From 2393e21ddcf95b7b5c93f9ffa683cd75a2ed80c4 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Thu, 21 Jan 2010 01:01:34 +0100 Subject: [PATCH] useless debug info --- gunicorn/http/tee.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/gunicorn/http/tee.py b/gunicorn/http/tee.py index 6d59ce26..3e62a0f9 100644 --- a/gunicorn/http/tee.py +++ b/gunicorn/http/tee.py @@ -43,7 +43,6 @@ class TeeInput(object): if self._len: return self._len if self._is_socket: pos = self.tmp.tell() - print pos while True: if not self._tee(CHUNK_SIZE): break @@ -65,7 +64,6 @@ class TeeInput(object): chunk = self._tee(CHUNK_SIZE) if not chunk: break r += chunk - print "apres %s" % str(len(r)) return r else: diff = self._tmp_size() - self.tmp.tell()