diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-24 20:42:49 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-24 20:42:49 (GMT) |
| commit | e4fbb0206d0794b58d096beafd9964340ea26640 (patch) | |
| tree | 6444f3b33e801744f204d75eddafc2b59ccabafb /Lib/test/test_userlist.py | |
| parent | 8153ac8f00efb5efb486805234887d49b22755ac (diff) | |
| download | cpython-e4fbb0206d0794b58d096beafd9964340ea26640.zip cpython-e4fbb0206d0794b58d096beafd9964340ea26640.tar.gz cpython-e4fbb0206d0794b58d096beafd9964340ea26640.tar.bz2 | |
Remove unused support.run_unittest imports.
It is not needed since tests use unittest.main().
Diffstat (limited to 'Lib/test/test_userlist.py')
| -rw-r--r-- | Lib/test/test_userlist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_userlist.py b/Lib/test/test_userlist.py index f92e4d3..8de6c14 100644 --- a/Lib/test/test_userlist.py +++ b/Lib/test/test_userlist.py @@ -1,7 +1,7 @@ # Check every path through every method of UserList from collections import UserList -from test import support, list_tests +from test import list_tests import unittest class UserListTest(list_tests.CommonTest): |
