diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-04 05:17:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-04 05:17:47 (GMT) |
commit | 7e4db2f253c555568d56177c2fd083bcf8f88d34 (patch) | |
tree | aa2606f09d5b1095bb20573ed6b0be38ca4d6f33 /Lib/doctest.py | |
parent | 1c4670ea0cc3d208121af11b9b973e6bb268e570 (diff) | |
download | cpython-7e4db2f253c555568d56177c2fd083bcf8f88d34.zip cpython-7e4db2f253c555568d56177c2fd083bcf8f88d34.tar.gz cpython-7e4db2f253c555568d56177c2fd083bcf8f88d34.tar.bz2 |
bpo-30166: Import command-line parsing modules only when needed. (#1293)
Diffstat (limited to 'Lib/doctest.py')
-rw-r--r-- | Lib/doctest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py index 0b78544..5e5bc21 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -93,7 +93,6 @@ __all__ = [ ] import __future__ -import argparse import difflib import inspect import linecache @@ -2741,6 +2740,8 @@ __test__ = {"_TestClass": _TestClass, def _test(): + import argparse + parser = argparse.ArgumentParser(description="doctest runner") parser.add_argument('-v', '--verbose', action='store_true', default=False, help='print very verbose output for all tests') |