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
339 B
18 lines
339 B
# test errors from bad operations with literals
|
|
# these raise a SyntaxWarning in CPython; see https://bugs.python.org/issue15248
|
|
|
|
# unsupported subscription
|
|
try:
|
|
1[0]
|
|
except TypeError:
|
|
print("TypeError")
|
|
try:
|
|
""[""]
|
|
except TypeError:
|
|
print("TypeError")
|
|
|
|
# not callable
|
|
try:
|
|
1()
|
|
except TypeError:
|
|
print("TypeError")
|
|
|