diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-11-14 12:46:42 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-11-14 12:46:42 (GMT) |
commit | 19e69c5a2067fe6322ead88733ebbca77673010b (patch) | |
tree | a16cdb8e1d9e80a4c47d8aa0702cc616afb1d3ea /Lib/test/test_optparse.py | |
parent | d226d308a3856e67c654ff3d5924be6d24568388 (diff) | |
download | cpython-19e69c5a2067fe6322ead88733ebbca77673010b.zip cpython-19e69c5a2067fe6322ead88733ebbca77673010b.tar.gz cpython-19e69c5a2067fe6322ead88733ebbca77673010b.tar.bz2 |
Issue #23883: Add missing APIs to __all__; patch by Jacek KoĆodziej
Diffstat (limited to 'Lib/test/test_optparse.py')
-rw-r--r-- | Lib/test/test_optparse.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_optparse.py b/Lib/test/test_optparse.py index 7621c24..91a0319 100644 --- a/Lib/test/test_optparse.py +++ b/Lib/test/test_optparse.py @@ -16,6 +16,7 @@ from io import StringIO from test import support +import optparse from optparse import make_option, Option, \ TitledHelpFormatter, OptionParser, OptionGroup, \ SUPPRESS_USAGE, OptionError, OptionConflictError, \ @@ -1650,6 +1651,12 @@ class TestParseNumber(BaseTest): "option -l: invalid integer value: '0x12x'") +class MiscTestCase(unittest.TestCase): + def test__all__(self): + blacklist = {'check_builtin', 'AmbiguousOptionError', 'NO_DEFAULT'} + support.check__all__(self, optparse, blacklist=blacklist) + + def test_main(): support.run_unittest(__name__) |