summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2002-06-07 03:26:43 (GMT)
committerSkip Montanaro <skip@pobox.com>2002-06-07 03:26:43 (GMT)
commit96803b29838753fc6d3a70b9577a2149e50b3b4a (patch)
treeb7045ab62f54aa7c4efd802fe204553dffc9d8f4 /Lib
parentc4fcfa34579716b453767b90d6a0b1349439a00a (diff)
downloadcpython-96803b29838753fc6d3a70b9577a2149e50b3b4a.zip
cpython-96803b29838753fc6d3a70b9577a2149e50b3b4a.tar.gz
cpython-96803b29838753fc6d3a70b9577a2149e50b3b4a.tar.bz2
gnu_getopt should be exported in __all__
Diffstat (limited to 'Lib')
-rw-r--r--Lib/getopt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/getopt.py b/Lib/getopt.py
index fb98e88..c726217 100644
--- a/Lib/getopt.py
+++ b/Lib/getopt.py
@@ -31,7 +31,7 @@ option involved with the exception.
# - a option string with a W followed by semicolon should
# treat "-W foo" as "--foo"
-__all__ = ["GetoptError","error","getopt"]
+__all__ = ["GetoptError","error","getopt","gnu_getopt"]
import os