diff options
author | Greg Ward <gward@python.net> | 2003-05-08 01:38:52 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2003-05-08 01:38:52 (GMT) |
commit | 4656ed44ca0cf90225ea1da04fa4154c77f02b0e (patch) | |
tree | 6f104c147db3b5d61331d4a02059fad03fb9a49b /Lib/optparse.py | |
parent | 066f3928b2b8f4bfc01cce66d339407e23ac02a1 (diff) | |
download | cpython-4656ed44ca0cf90225ea1da04fa4154c77f02b0e.zip cpython-4656ed44ca0cf90225ea1da04fa4154c77f02b0e.tar.gz cpython-4656ed44ca0cf90225ea1da04fa4154c77f02b0e.tar.bz2 |
Update to Optik 1.4.1+: adds __all__ (Optik SF bug #728563).
Diffstat (limited to 'Lib/optparse.py')
-rw-r--r-- | Lib/optparse.py | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/Lib/optparse.py b/Lib/optparse.py index 991bcb6..f8e3394 100644 --- a/Lib/optparse.py +++ b/Lib/optparse.py @@ -4,7 +4,7 @@ By Greg Ward <gward@python.net> Originally distributed as Optik; see http://optik.sourceforge.net/ . -If you have problems with this module, please do not files bugs, +If you have problems with this module, please do not file bugs, patches, or feature requests with Python; instead, use Optik's SourceForge project page: http://sourceforge.net/projects/optik @@ -16,8 +16,25 @@ For support, use the optik-users@lists.sourceforge.net mailing list # Python developers: please do not make changes to this file, since # it is automatically generated from the Optik source code. - -__version__ = "1.4.1" +__version__ = "1.4.1+" + +__all__ = ['Option', + 'SUPPRESS_HELP', + 'SUPPRESS_USAGE', + 'STD_HELP_OPTION', + 'STD_VERSION_OPTION', + 'Values', + 'OptionContainer', + 'OptionGroup', + 'OptionParser', + 'HelpFormatter', + 'IndentedHelpFormatter', + 'TitledHelpFormatter', + 'OptParseError', + 'OptionError', + 'OptionConflictError', + 'OptionValueError', + 'BadOptionError'] __copyright__ = """ Copyright (c) 2001-2003 Gregory P. Ward. All rights reserved. |