Author: Richard Plangger <[email protected]>
Branch: py3.5
Changeset: r88950:a4750edf5273
Date: 2016-12-07 16:34 +0100
http://bitbucket.org/pypy/pypy/changeset/a4750edf5273/

Log:    remove two debug statements

diff --git a/lib-python/3/http/client.py b/lib-python/3/http/client.py
--- a/lib-python/3/http/client.py
+++ b/lib-python/3/http/client.py
@@ -556,7 +556,6 @@
         try:
             while True:
                 chunk_left = self._get_chunk_left()
-                print("chunk_left", chunk_left)
                 if chunk_left is None:
                     break
                 value.append(self._safe_read(chunk_left))
@@ -606,7 +605,6 @@
         s = []
         while amt > 0:
             chunk = self.fp.read(min(amt, MAXAMOUNT))
-            print("read chunk %d %d", len(chunk), min(amt, MAXAMOUNT))
             if not chunk:
                 raise IncompleteRead(b''.join(s), amt)
             s.append(chunk)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to