Get argparse.__all__ back up to date (issue 9353)

This commit is contained in:
Steven Bethard 2010-11-01 15:23:12 +00:00
parent c4ac887917
commit 72c553829a
2 changed files with 20 additions and 3 deletions

View file

@ -65,13 +65,20 @@ __version__ = '1.1'
__all__ = [
'ArgumentParser',
'ArgumentError',
'Namespace',
'Action',
'ArgumentTypeError',
'FileType',
'HelpFormatter',
'ArgumentDefaultsHelpFormatter',
'RawDescriptionHelpFormatter',
'RawTextHelpFormatter',
'ArgumentDefaultsHelpFormatter',
'Namespace',
'Action',
'ONE_OR_MORE',
'OPTIONAL',
'PARSER',
'REMAINDER',
'SUPPRESS',
'ZERO_OR_MORE',
]