python-uncompyle6/test/decompyle/test_iterators.py
rocky 478602bfa5 Add decompyle's 2.1 tests
Update README.rst to note new pythons supported since last update
2016-10-08 05:54:35 -04:00

12 lines
124 B
Python

for i in range(20):
print i,
print
for i in range(10):
print i,
#if i == 10: break
else:
print 'The End'