Kaydet (Commit) 5c9bfe2b authored tarafından Guido van Rossum's avatar Guido van Rossum

Get rid of debug print statements

üst 504f4a99
"Socket wrapper for Windows, which does not support dup()." "Socket wrapper for Windows, which does not support dup()."
print "new socket.py loading"
# (And hence, fromfd() and makefile() are unimplemented in C....) # (And hence, fromfd() and makefile() are unimplemented in C....)
# XXX Living dangerously here -- close() is implemented by deleting a # XXX Living dangerously here -- close() is implemented by deleting a
...@@ -26,7 +24,6 @@ def socket(family, type, proto=0): ...@@ -26,7 +24,6 @@ def socket(family, type, proto=0):
class _socketobject: class _socketobject:
def __init__(self, sock): def __init__(self, sock):
print "creating _socketobject", sock
self._sock = sock self._sock = sock
def close(self): def close(self):
......
"Socket wrapper for Windows, which does not support dup()." "Socket wrapper for Windows, which does not support dup()."
print "new socket.py loading"
# (And hence, fromfd() and makefile() are unimplemented in C....) # (And hence, fromfd() and makefile() are unimplemented in C....)
# XXX Living dangerously here -- close() is implemented by deleting a # XXX Living dangerously here -- close() is implemented by deleting a
...@@ -26,7 +24,6 @@ def socket(family, type, proto=0): ...@@ -26,7 +24,6 @@ def socket(family, type, proto=0):
class _socketobject: class _socketobject:
def __init__(self, sock): def __init__(self, sock):
print "creating _socketobject", sock
self._sock = sock self._sock = sock
def close(self): 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