summaryrefslogtreecommitdiff
path: root/Lib/getopt.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2002-06-07 03:26:43 +0000
committerSkip Montanaro <skip@pobox.com>2002-06-07 03:26:43 +0000
commit96803b29838753fc6d3a70b9577a2149e50b3b4a (patch)
treeb7045ab62f54aa7c4efd802fe204553dffc9d8f4 /Lib/getopt.py
parentc4fcfa34579716b453767b90d6a0b1349439a00a (diff)
downloadcpython-git-96803b29838753fc6d3a70b9577a2149e50b3b4a.tar.gz
gnu_getopt should be exported in __all__
Diffstat (limited to 'Lib/getopt.py')
-rw-r--r--Lib/getopt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/getopt.py b/Lib/getopt.py
index fb98e88530..c72621749d 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