summaryrefslogtreecommitdiffstats
path: root/Lib/socket.py
diff options
context:
space:
mode:
authorHai Shi <shihai1992@gmail.com>2019-07-12 02:17:53 (GMT)
committerBenjamin Peterson <benjamin@python.org>2019-07-12 02:17:52 (GMT)
commitc8e7146de257930ea8d0d4aa74b3a64fcaa79d4b (patch)
tree105b88cc9d199569012d1c8315a71e49a82cda7a /Lib/socket.py
parent13ab570febac64bb55fb46d866a9ba5a46ab8902 (diff)
downloadcpython-c8e7146de257930ea8d0d4aa74b3a64fcaa79d4b.zip
cpython-c8e7146de257930ea8d0d4aa74b3a64fcaa79d4b.tar.gz
cpython-c8e7146de257930ea8d0d4aa74b3a64fcaa79d4b.tar.bz2
closes bpo-37566: Remove _realsocket from socket.py. (GH-14711)
Diffstat (limited to 'Lib/socket.py')
-rw-r--r--Lib/socket.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/socket.py b/Lib/socket.py
index 0dd8ec7..3016b03 100644
--- a/Lib/socket.py
+++ b/Lib/socket.py
@@ -104,8 +104,6 @@ def _intenum_converter(value, enum_klass):
except ValueError:
return value
-_realsocket = socket
-
# WSA error codes
if sys.platform.lower().startswith("win"):
errorTab = {}