From 656b5120a5cfd602f0033a5671ef7b1c50c2cc12 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Fri, 4 Jul 2014 10:52:38 +0300 Subject: [PATCH] remove unneeded print --- common.py | 1 - 1 file changed, 1 deletion(-) 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)