remove unneeded print

This commit is contained in:
Roman Zeyde
2014-07-04 10:52:38 +03:00
parent 40915f4f15
commit 656b5120a5

View File

@@ -68,7 +68,6 @@ def iterate(data, bufsize, offset=0, advance=1, func=None):
if buf_index == bufsize:
result = func(buf) if func else buf
print offset, result
yield offset, result
buf[:-advance] = buf[advance:]
buf_index = max(0, buf_index - advance)