diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-24 23:42:49 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-24 23:42:49 +0300 |
commit | e4fbb0206d0794b58d096beafd9964340ea26640 (patch) | |
tree | 6444f3b33e801744f204d75eddafc2b59ccabafb /Lib/test/test_range.py | |
parent | 8153ac8f00efb5efb486805234887d49b22755ac (diff) | |
download | cpython-git-e4fbb0206d0794b58d096beafd9964340ea26640.tar.gz |
Remove unused support.run_unittest imports.
It is not needed since tests use unittest.main().
Diffstat (limited to 'Lib/test/test_range.py')
-rw-r--r-- | Lib/test/test_range.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_range.py b/Lib/test/test_range.py index 106c732dd9..e03b570dab 100644 --- a/Lib/test/test_range.py +++ b/Lib/test/test_range.py @@ -1,6 +1,6 @@ # Python test set -- built-in functions -import test.support, unittest +import unittest import sys import pickle import itertools |