You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
8 lines
184 B
Python
8 lines
184 B
Python
# From 2.4 test_array.py
|
|
# In Python 2.4 and earlier "yield" is not valid and instead
|
|
# we must use "yield None". Bug was not adding "None"
|
|
|
|
def yield_bug():
|
|
yield None
|
|
return
|