fix iterator issues

This commit is contained in:
Roman Zeyde
2014-08-07 17:03:09 +03:00
parent 16bc186631
commit 53363ee171
6 changed files with 12 additions and 10 deletions

View File

@@ -19,7 +19,7 @@ def test_read():
p.stdin.close()
f = stream.Reader(p.stdout)
result = zip(range(10), f)
result = list(zip(range(10), f))
p.kill()
j = 0