Files
python-uncompyle6/test/simple_source/bug25/02_yield_bug.py
2018-02-22 22:23:57 -05:00

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