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/trace.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/trace.py')
-rwxr-xr-x | Lib/trace.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/trace.py b/Lib/trace.py index ae15461..e443edd 100755 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -48,7 +48,7 @@ Sample use, programmatically r.write_results(show_missing=True, coverdir="/tmp") """ __all__ = ['Trace', 'CoverageResults'] -import argparse + import linecache import os import re @@ -609,6 +609,7 @@ class Trace: callers=self._callers) def main(): + import argparse parser = argparse.ArgumentParser() parser.add_argument('--version', action='version', version='trace 2.0') |