Author: walter.doerwald
Date: Tue May 29 21:18:28 2007
New Revision: 55654

Modified:
   python/branches/py3k-struni/Lib/io.py
Log:
Remove debug print.


Modified: python/branches/py3k-struni/Lib/io.py
==============================================================================
--- python/branches/py3k-struni/Lib/io.py       (original)
+++ python/branches/py3k-struni/Lib/io.py       Tue May 29 21:18:28 2007
@@ -647,7 +647,6 @@
             to_read = max(self.buffer_size,
                           n if n is not None else 2*len(self._read_buf))
             current = self.raw.read(to_read)
-            print(to_read, repr(current))
             if current in (b"", None):
                 nodata_val = current
                 break
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to