commit | dbfb12148d59933273d9bf68cb0cbe5486b1ca61 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Aug 22 17:31:16 2002 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Aug 22 17:31:16 2002 +0000 |
tree | 106ab9e9c7f2bdc883876b65b045ff141d8fdc7d | |
parent | dc61cdf6c0f433cba6a51b05346acb5b538a7617 [diff] [blame] |
On Windows, make sure SocketType is the same as socket. (SF bug 598097)
diff --git a/Lib/socket.py b/Lib/socket.py index 86eb55e..a8a4e39 100644 --- a/Lib/socket.py +++ b/Lib/socket.py
@@ -181,7 +181,7 @@ del _m, _s if _needwrapper: - socket = _socketobject + socket = SocketType = _socketobject class _fileobject(object): """Faux file object attached to a socket object."""