mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Get rid of debug print statements
This commit is contained in:
parent
504f4a9901
commit
5c9bfe2b80
2 changed files with 0 additions and 6 deletions
|
@ -1,7 +1,5 @@
|
|||
"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):
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
"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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue