first commit

This commit is contained in:
Mysterie
2012-06-05 10:46:41 +02:00
commit b820316f37
82 changed files with 83963 additions and 0 deletions

11
test/test_iterators.py Executable file
View File

@@ -0,0 +1,11 @@
for i in range(20):
print i,
print
for i in range(10):
print i,
#if i == 10: break
else:
print 'The End'