blob: 42210b44133fd59c33e4fc020139560f8c49d60b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# This case occurs with time.time() values
print(int(1418774543.))
print(int(2.**100))
print("%d" % 1418774543.)
print("%d" % 2.**100)
testpass = True
for i in range(0,1024):
bitcnt = len(bin(int(2.**i))) - 3;
if i != bitcnt:
print('fail: 2**%u was %u bits long' % (i, bitcnt));
testpass = False
print("power of 2 test: %s" % (testpass and 'passed' or 'failed'))
testpass = True
for i in range(0,23):
digcnt = len(str(int(10.**i))) - 1;
if i != digcnt:
print('fail: 10**%u was %u digits long' % (i, digcnt));
testpass = False
print("power of 10 test: %s" % (testpass and 'passed' or 'failed'))
# test inf conversion
try:
int(float('inf'))
except OverflowError:
print("OverflowError")
# test nan conversion
try:
int(float('nan'))
except ValueError:
print("ValueError")
|