[Python-checkins] cpython: Issue #23277: Remove unused support.run_unittest import.

serhiy.storchaka python-checkins at python.org
Sun Apr 24 06:55:00 EDT 2016


https://hg.python.org/cpython/rev/abf3f0dcf2fd
changeset:   101124:abf3f0dcf2fd
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sun Apr 24 13:45:58 2016 +0300
summary:
  Issue #23277: Remove unused support.run_unittest import.

files:
  Lib/test/test_codecmaps_cn.py                  |  1 -
  Lib/test/test_codecmaps_hk.py                  |  1 -
  Lib/test/test_codecmaps_kr.py                  |  1 -
  Lib/test/test_codecmaps_tw.py                  |  1 -
  Lib/test/test_dictcomps.py                     |  2 --
  Lib/test/test_email/test_asian_codecs.py       |  1 -
  Lib/test/test_file.py                          |  2 +-
  Lib/test/test_fileinput.py                     |  2 +-
  Lib/test/test_htmlparser.py                    |  1 -
  Lib/test/test_importlib/test_namespace_pkgs.py |  1 -
  Lib/test/test_iterlen.py                       |  1 -
  Lib/test/test_macpath.py                       |  2 +-
  Lib/test/test_sched.py                         |  1 -
  Lib/test/test_tools/test_pdeps.py              |  1 -
  Lib/test/test_userstring.py                    |  2 +-
  15 files changed, 4 insertions(+), 16 deletions(-)


diff --git a/Lib/test/test_codecmaps_cn.py b/Lib/test/test_codecmaps_cn.py
--- a/Lib/test/test_codecmaps_cn.py
+++ b/Lib/test/test_codecmaps_cn.py
@@ -3,7 +3,6 @@
 #   Codec mapping tests for PRC encodings
 #
 
-from test import support
 from test import multibytecodec_support
 import unittest
 
diff --git a/Lib/test/test_codecmaps_hk.py b/Lib/test/test_codecmaps_hk.py
--- a/Lib/test/test_codecmaps_hk.py
+++ b/Lib/test/test_codecmaps_hk.py
@@ -3,7 +3,6 @@
 #   Codec mapping tests for HongKong encodings
 #
 
-from test import support
 from test import multibytecodec_support
 import unittest
 
diff --git a/Lib/test/test_codecmaps_kr.py b/Lib/test/test_codecmaps_kr.py
--- a/Lib/test/test_codecmaps_kr.py
+++ b/Lib/test/test_codecmaps_kr.py
@@ -3,7 +3,6 @@
 #   Codec mapping tests for ROK encodings
 #
 
-from test import support
 from test import multibytecodec_support
 import unittest
 
diff --git a/Lib/test/test_codecmaps_tw.py b/Lib/test/test_codecmaps_tw.py
--- a/Lib/test/test_codecmaps_tw.py
+++ b/Lib/test/test_codecmaps_tw.py
@@ -3,7 +3,6 @@
 #   Codec mapping tests for ROC encodings
 #
 
-from test import support
 from test import multibytecodec_support
 import unittest
 
diff --git a/Lib/test/test_dictcomps.py b/Lib/test/test_dictcomps.py
--- a/Lib/test/test_dictcomps.py
+++ b/Lib/test/test_dictcomps.py
@@ -1,7 +1,5 @@
 import unittest
 
-from test import support
-
 # For scope testing.
 g = "Global variable"
 
diff --git a/Lib/test/test_email/test_asian_codecs.py b/Lib/test/test_email/test_asian_codecs.py
--- a/Lib/test/test_email/test_asian_codecs.py
+++ b/Lib/test/test_email/test_asian_codecs.py
@@ -3,7 +3,6 @@
 # email package unit tests for (optional) Asian codecs
 
 import unittest
-from test.support import run_unittest
 
 from test.test_email.test_email import TestEmailBase
 from email.charset import Charset
diff --git a/Lib/test/test_file.py b/Lib/test/test_file.py
--- a/Lib/test/test_file.py
+++ b/Lib/test/test_file.py
@@ -7,7 +7,7 @@
 import io
 import _pyio as pyio
 
-from test.support import TESTFN, run_unittest
+from test.support import TESTFN
 from collections import UserList
 
 class AutoFileTests:
diff --git a/Lib/test/test_fileinput.py b/Lib/test/test_fileinput.py
--- a/Lib/test/test_fileinput.py
+++ b/Lib/test/test_fileinput.py
@@ -22,7 +22,7 @@
 from io import BytesIO, StringIO
 from fileinput import FileInput, hook_encoded
 
-from test.support import verbose, TESTFN, run_unittest, check_warnings
+from test.support import verbose, TESTFN, check_warnings
 from test.support import unlink as safe_unlink
 from test import support
 from unittest import mock
diff --git a/Lib/test/test_htmlparser.py b/Lib/test/test_htmlparser.py
--- a/Lib/test/test_htmlparser.py
+++ b/Lib/test/test_htmlparser.py
@@ -3,7 +3,6 @@
 import html.parser
 import pprint
 import unittest
-from test import support
 
 
 class EventCollector(html.parser.HTMLParser):
diff --git a/Lib/test/test_importlib/test_namespace_pkgs.py b/Lib/test/test_importlib/test_namespace_pkgs.py
--- a/Lib/test/test_importlib/test_namespace_pkgs.py
+++ b/Lib/test/test_importlib/test_namespace_pkgs.py
@@ -7,7 +7,6 @@
 import unittest
 
 from test.test_importlib import util
-from test.support import run_unittest
 
 # needed tests:
 #
diff --git a/Lib/test/test_iterlen.py b/Lib/test/test_iterlen.py
--- a/Lib/test/test_iterlen.py
+++ b/Lib/test/test_iterlen.py
@@ -42,7 +42,6 @@
 """
 
 import unittest
-from test import support
 from itertools import repeat
 from collections import deque
 from operator import length_hint
diff --git a/Lib/test/test_macpath.py b/Lib/test/test_macpath.py
--- a/Lib/test/test_macpath.py
+++ b/Lib/test/test_macpath.py
@@ -1,5 +1,5 @@
 import macpath
-from test import support, test_genericpath
+from test import test_genericpath
 import unittest
 
 
diff --git a/Lib/test/test_sched.py b/Lib/test/test_sched.py
--- a/Lib/test/test_sched.py
+++ b/Lib/test/test_sched.py
@@ -2,7 +2,6 @@
 import sched
 import time
 import unittest
-from test import support
 try:
     import threading
 except ImportError:
diff --git a/Lib/test/test_tools/test_pdeps.py b/Lib/test/test_tools/test_pdeps.py
--- a/Lib/test/test_tools/test_pdeps.py
+++ b/Lib/test/test_tools/test_pdeps.py
@@ -3,7 +3,6 @@
 import os
 import unittest
 import tempfile
-from test import support
 
 from test.test_tools import scriptsdir, skip_if_missing, import_tool
 
diff --git a/Lib/test/test_userstring.py b/Lib/test/test_userstring.py
--- a/Lib/test/test_userstring.py
+++ b/Lib/test/test_userstring.py
@@ -3,7 +3,7 @@
 
 import string
 import unittest
-from test import support, string_tests
+from test import string_tests
 
 from collections import UserString
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list