You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
224 B
18 lines
224 B
# test errors operating on bignum
|
|
|
|
i = 1 << 65
|
|
|
|
try:
|
|
i << -1
|
|
except ValueError:
|
|
print("ValueError")
|
|
|
|
try:
|
|
len(i)
|
|
except TypeError:
|
|
print("TypeError")
|
|
|
|
try:
|
|
1 in i
|
|
except TypeError:
|
|
print("TypeError")
|
|
|