You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 16:59:52 +08:00
11 lines
197 B
Python
Executable File
11 lines
197 B
Python
Executable File
# This is a seperate test pattern, since 'continue' within 'try'
|
|
# was not allowed till Python 2.1
|
|
|
|
for term in args:
|
|
try:
|
|
print
|
|
continue
|
|
print
|
|
except:
|
|
pass
|