mirror of
https://github.com/romanz/amodem.git
synced 2026-04-05 20:26:24 +08:00
fix iterator issues
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user