You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 16:59:52 +08:00
9 lines
184 B
Python
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)
|