From: Skip Montanaro Date: Fri, 7 Jun 2002 03:26:43 +0000 (+0000) Subject: gnu_getopt should be exported in __all__ X-Git-Tag: v2.3c1~5427 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=96803b29838753fc6d3a70b9577a2149e50b3b4a;p=python gnu_getopt should be exported in __all__ --- 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