Author: Richard Plangger <[email protected]>
Branch: py3.5-ssl
Changeset: r88945:6ea603835b26
Date: 2016-12-07 16:04 +0100
http://bitbucket.org/pypy/pypy/changeset/6ea603835b26/

Log:    remove break point used for debugging

diff --git a/lib-python/3/socket.py b/lib-python/3/socket.py
--- a/lib-python/3/socket.py
+++ b/lib-python/3/socket.py
@@ -572,7 +572,6 @@
             raise OSError("cannot read from timed out object")
         while True:
             try:
-                import pdb; pdb.set_trace()
                 return self._sock.recv_into(b)
             except timeout:
                 self._timeout_occurred = True
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to