tests: Add test for exception-chaining raise syntax.

This commit is contained in:
Paul Sokolovsky 2015-09-01 10:38:09 +03:00
parent 2ff2ea5f3b
commit ab2594e341
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,6 @@
# Exception chaining is not supported, but check that basic
# exception works as expected.
try:
raise Exception from None
except Exception:
print("Caught Exception")

View File

@ -0,0 +1,2 @@
Caught Exception
Warning: exception chaining not supported