summaryrefslogtreecommitdiff
path: root/Lib/socket.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-03-18 19:53:21 +0000
committerSkip Montanaro <skip@pobox.com>2001-03-18 19:53:21 +0000
commit64de1a4b08479aa26a8d6a0bee83d2369179dd37 (patch)
tree80a865ff592e7837e06b508b516ce2d34adac16f /Lib/socket.py
parent8f4eab23456d1b038d8d0d2a3b56f9524c2030ad (diff)
downloadcpython-git-64de1a4b08479aa26a8d6a0bee83d2369179dd37.tar.gz
add errorTab to __all__ on win*
closes bug #406642
Diffstat (limited to 'Lib/socket.py')
-rw-r--r--Lib/socket.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/socket.py b/Lib/socket.py
index 136a052e36..a49e7cbcd1 100644
--- a/Lib/socket.py
+++ b/Lib/socket.py
@@ -79,6 +79,7 @@ if sys.platform.lower().startswith("win"):
errorTab[10063] = "The name is too long."
errorTab[10064] = "The host is down."
errorTab[10065] = "The host is unreachable."
+ __all__.append("errorTab")
del os, sys