Commit e4fbb020 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Remove unused support.run_unittest imports.

It is not needed since tests use unittest.main().
parent 8153ac8f
......@@ -9,7 +9,7 @@ Written by Marc-Andre Lemburg (mal@lemburg.com).
"""#"
import test.support, unittest
import unittest
import codecs
......
......@@ -3,7 +3,6 @@
# Codec encoding tests for PRC encodings.
#
from test import support
from test import multibytecodec_support
import unittest
......
......@@ -3,7 +3,6 @@
# Codec encoding tests for HongKong encodings.
#
from test import support
from test import multibytecodec_support
import unittest
......
# Codec encoding tests for ISO 2022 encodings.
from test import support
from test import multibytecodec_support
import unittest
......
......@@ -3,7 +3,6 @@
# Codec encoding tests for Japanese encodings.
#
from test import support
from test import multibytecodec_support
import unittest
......
......@@ -3,7 +3,6 @@
# Codec encoding tests for ROK encodings.
#
from test import support
from test import multibytecodec_support
import unittest
......
......@@ -3,7 +3,6 @@
# Codec encoding tests for ROC encodings.
#
from test import support
from test import multibytecodec_support
import unittest
......
......@@ -3,7 +3,6 @@
# Codec mapping tests for Japanese encodings
#
from test import support
from test import multibytecodec_support
import unittest
......
......@@ -28,7 +28,6 @@ import socket
import time
import unittest
from test import support
if not hasattr(select, "epoll"):
raise unittest.SkipTest("test works only on Linux 2.6")
......
......@@ -3,7 +3,6 @@ import hmac
import hashlib
import unittest
import warnings
from test import support
def ignore_warning(func):
......
import sys
from test import support, list_tests
from test import list_tests
import pickle
import unittest
......
import test.support, unittest
import unittest
class PowTest(unittest.TestCase):
......
# Python test set -- built-in functions
import test.support, unittest
import unittest
import sys
import pickle
import itertools
......
# Check every path through every method of UserDict
from test import support, mapping_tests
from test import mapping_tests
import unittest
import collections
......
# 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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment