diff options
author | Skip Montanaro <skip@pobox.com> | 2001-03-18 19:53:21 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-03-18 19:53:21 (GMT) |
commit | 64de1a4b08479aa26a8d6a0bee83d2369179dd37 (patch) | |
tree | 80a865ff592e7837e06b508b516ce2d34adac16f /Lib/socket.py | |
parent | 8f4eab23456d1b038d8d0d2a3b56f9524c2030ad (diff) | |
download | cpython-64de1a4b08479aa26a8d6a0bee83d2369179dd37.zip cpython-64de1a4b08479aa26a8d6a0bee83d2369179dd37.tar.gz cpython-64de1a4b08479aa26a8d6a0bee83d2369179dd37.tar.bz2 |
add errorTab to __all__ on win*
closes bug #406642
Diffstat (limited to 'Lib/socket.py')
-rw-r--r-- | Lib/socket.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/socket.py b/Lib/socket.py index 136a052..a49e7cb 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 |