Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5c9bfe2

Browse files
committed
Get rid of debug print statements
1 parent 504f4a9 commit 5c9bfe2

2 files changed

Lines changed: 0 additions & 6 deletions

File tree

Lib/plat-win/socket.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"Socket wrapper for Windows, which does not support dup()."
22

3-
print "new socket.py loading"
4-
53
# (And hence, fromfd() and makefile() are unimplemented in C....)
64

75
# XXX Living dangerously here -- close() is implemented by deleting a
@@ -26,7 +24,6 @@ def socket(family, type, proto=0):
2624
class _socketobject:
2725

2826
def __init__(self, sock):
29-
print "creating _socketobject", sock
3027
self._sock = sock
3128

3229
def close(self):

Lib/win/socket.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"Socket wrapper for Windows, which does not support dup()."
22

3-
print "new socket.py loading"
4-
53
# (And hence, fromfd() and makefile() are unimplemented in C....)
64

75
# XXX Living dangerously here -- close() is implemented by deleting a
@@ -26,7 +24,6 @@ def socket(family, type, proto=0):
2624
class _socketobject:
2725

2826
def __init__(self, sock):
29-
print "creating _socketobject", sock
3027
self._sock = sock
3128

3229
def close(self):

0 commit comments

Comments
 (0)