Files
python-uncompyle6/test/simple_source/bug37/01_assert2.py
2019-09-23 08:26:16 -04:00

9 lines
184 B
Python

# Self-checking test.
# Bug was in if transform not inverting expression
# This file is RUNNABLE!
def test_assert2(c):
if c < 2:
raise SyntaxError('Oops')
test_assert2(5)