diff options
author | Georg Brandl <georg@python.org> | 2009-03-31 19:12:17 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-03-31 19:12:17 (GMT) |
commit | c5d8c6334571b17bef1111e8a6978d50bd38efb3 (patch) | |
tree | 60114faa3678fe9ec00a6864d61009be39919455 /Lib/optparse.py | |
parent | b48adecbd68442708f74c57779c4bbce80fec7cd (diff) | |
download | cpython-c5d8c6334571b17bef1111e8a6978d50bd38efb3.zip cpython-c5d8c6334571b17bef1111e8a6978d50bd38efb3.tar.gz cpython-c5d8c6334571b17bef1111e8a6978d50bd38efb3.tar.bz2 |
#5190: export make_option in __all__.
Diffstat (limited to 'Lib/optparse.py')
-rw-r--r-- | Lib/optparse.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/optparse.py b/Lib/optparse.py index 1107d9e..aeb5716 100644 --- a/Lib/optparse.py +++ b/Lib/optparse.py @@ -11,6 +11,7 @@ For support, use the optik-users@lists.sourceforge.net mailing list __version__ = "1.5.3" __all__ = ['Option', + 'make_option', 'SUPPRESS_HELP', 'SUPPRESS_USAGE', 'Values', |