summaryrefslogtreecommitdiffstats
path: root/Lib/plat-win
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-20 20:00:51 (GMT)
committerGuido van Rossum <guido@python.org>1996-08-20 20:00:51 (GMT)
commit5c9bfe2b8063fa6a10ae99d9107340f33d504750 (patch)
tree856b0479069f9f62ec651f713f16345b94d1daf2 /Lib/plat-win
parent504f4a9901d9e33438eec36da9c4b5cbabc61fdf (diff)
downloadcpython-5c9bfe2b8063fa6a10ae99d9107340f33d504750.zip
cpython-5c9bfe2b8063fa6a10ae99d9107340f33d504750.tar.gz
cpython-5c9bfe2b8063fa6a10ae99d9107340f33d504750.tar.bz2
Get rid of debug print statements
Diffstat (limited to 'Lib/plat-win')
-rwxr-xr-xLib/plat-win/socket.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/plat-win/socket.py b/Lib/plat-win/socket.py
index ec016f4..7e1b372 100755
--- a/Lib/plat-win/socket.py
+++ b/Lib/plat-win/socket.py
@@ -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):