Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4656ed4

Browse files
committed
Update to Optik 1.4.1+: adds __all__ (Optik SF bug #728563).
1 parent 066f392 commit 4656ed4

1 file changed

Lines changed: 20 additions & 3 deletions

File tree

Lib/optparse.py

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Originally distributed as Optik; see http://optik.sourceforge.net/ .
66
7-
If you have problems with this module, please do not files bugs,
7+
If you have problems with this module, please do not file bugs,
88
patches, or feature requests with Python; instead, use Optik's
99
SourceForge project page:
1010
http://sourceforge.net/projects/optik
@@ -16,8 +16,25 @@
1616
# Python developers: please do not make changes to this file, since
1717
# it is automatically generated from the Optik source code.
1818

19-
20-
__version__ = "1.4.1"
19+
__version__ = "1.4.1+"
20+
21+
__all__ = ['Option',
22+
'SUPPRESS_HELP',
23+
'SUPPRESS_USAGE',
24+
'STD_HELP_OPTION',
25+
'STD_VERSION_OPTION',
26+
'Values',
27+
'OptionContainer',
28+
'OptionGroup',
29+
'OptionParser',
30+
'HelpFormatter',
31+
'IndentedHelpFormatter',
32+
'TitledHelpFormatter',
33+
'OptParseError',
34+
'OptionError',
35+
'OptionConflictError',
36+
'OptionValueError',
37+
'BadOptionError']
2138

2239
__copyright__ = """
2340
Copyright (c) 2001-2003 Gregory P. Ward. All rights reserved.

0 commit comments

Comments
 (0)