Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
5c9bfe2b
Commit
5c9bfe2b
authored
Aug 20, 1996
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of debug print statements
parent
504f4a99
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
6 deletions
+0
-6
Lib/plat-win/socket.py
Lib/plat-win/socket.py
+0
-3
Lib/win/socket.py
Lib/win/socket.py
+0
-3
No files found.
Lib/plat-win/socket.py
View file @
5c9bfe2b
"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
):
...
...
Lib/win/socket.py
View file @
5c9bfe2b
"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
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment