2017-02-15 10:11:16 -05:00
|
|
|
# test errors from bad operations (unary, binary, etc)
|
|
|
|
try:
|
|
|
|
memoryview
|
|
|
|
except:
|
|
|
|
print("SKIP")
|
2017-06-10 13:03:01 -04:00
|
|
|
raise SystemExit
|
2017-02-15 10:11:16 -05:00
|
|
|
|
|
|
|
def test_exc(code, exc):
|
|
|
|
try:
|
|
|
|
exec(code)
|
|
|
|
print("no exception")
|
|
|
|
except exc:
|
|
|
|
print("right exception")
|
|
|
|
except:
|
|
|
|
print("wrong exception")
|
|
|
|
|
|
|
|
# unsupported binary operators
|
|
|
|
test_exc("m = memoryview(bytearray())\nm += bytearray()", TypeError)
|