You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 09:22:40 +08:00
10 lines
219 B
Python
10 lines
219 B
Python
# From 2.7 test_argparse.py
|
|
# Bug was turnning assert into an "or raise" statement
|
|
def __call__(arg, dest):
|
|
try:
|
|
assert arg == 'spam', 'dest: %s' % dest
|
|
except:
|
|
raise
|
|
|
|
__call__('spam', __file__)
|