diff --git a/common.py b/common.py index e9c1b49..61ac239 100644 --- a/common.py +++ b/common.py @@ -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)