Commit 5c9bfe2b authored by Guido van Rossum's avatar Guido van Rossum

Get rid of debug print statements

parent 504f4a99
"Socket wrapper for Windows, which does not support dup()."
print "new socket.py loading"
# (And hence, fromfd() and makefile() are unimplemented in C....)
# XXX Living dangerously here -- close() is implemented by deleting a
......@@ -26,7 +24,6 @@ def socket(family, type, proto=0):
class _socketobject:
def __init__(self, sock):
print "creating _socketobject", sock
self._sock = sock
def close(self):
......
"Socket wrapper for Windows, which does not support dup()."
print "new socket.py loading"
# (And hence, fromfd() and makefile() are unimplemented in C....)
# XXX Living dangerously here -- close() is implemented by deleting a
......@@ -26,7 +24,6 @@ def socket(family, type, proto=0):
class _socketobject:
def __init__(self, sock):
print "creating _socketobject", sock
self._sock = sock
def close(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment