diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-10-08 18:34:07 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-10-08 18:34:07 (GMT) |
commit | 08ec6d9611b612182808bdf1d30cdd786cde9c3e (patch) | |
tree | b150b971bcba71216b7998cea5cd868207f2dc75 /Lib/test/libregrtest | |
parent | 6e8d6ed2f4522c172c825441523dbd88fd1f4d62 (diff) | |
download | cpython-08ec6d9611b612182808bdf1d30cdd786cde9c3e.zip cpython-08ec6d9611b612182808bdf1d30cdd786cde9c3e.tar.gz cpython-08ec6d9611b612182808bdf1d30cdd786cde9c3e.tar.bz2 |
Fix missing import in libregrtest.
Diffstat (limited to 'Lib/test/libregrtest')
-rw-r--r-- | Lib/test/libregrtest/cmdline.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/libregrtest/cmdline.py b/Lib/test/libregrtest/cmdline.py index 21c3e66..a9cee6e 100644 --- a/Lib/test/libregrtest/cmdline.py +++ b/Lib/test/libregrtest/cmdline.py @@ -1,5 +1,6 @@ import argparse import os +import sys from test import support |