diff options
| author | Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <thatiparthysreenivas@gmail.com> | 2018-11-10 07:22:02 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-11-10 07:22:02 (GMT) |
| commit | b9498e2367f21205ed2b9c172665ea6f0a218d27 (patch) | |
| tree | f3b03cddd87e5c9c8315113efbea3854870f80b0 /Lib/test | |
| parent | 43a74abb3a87092a7fd6c71042eafb977d70d8e0 (diff) | |
| download | cpython-b9498e2367f21205ed2b9c172665ea6f0a218d27.zip cpython-b9498e2367f21205ed2b9c172665ea6f0a218d27.tar.gz cpython-b9498e2367f21205ed2b9c172665ea6f0a218d27.tar.bz2 | |
bpo-35202: Remove unused imports in Lib directory. (GH-10446)
Diffstat (limited to 'Lib/test')
| -rw-r--r-- | Lib/test/test_collections.py | 2 | ||||
| -rw-r--r-- | Lib/test/test_queue.py | 2 | ||||
| -rw-r--r-- | Lib/test/test_sys.py | 1 | ||||
| -rw-r--r-- | Lib/test/test_thread.py | 1 |
4 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py index 200e027..e2ffaaa 100644 --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -3,11 +3,9 @@ import collections import copy import doctest -import keyword import operator import pickle from random import choice, randrange -import re import string import sys from test import support diff --git a/Lib/test/test_queue.py b/Lib/test/test_queue.py index 1a8d5f8..c8528f9 100644 --- a/Lib/test/test_queue.py +++ b/Lib/test/test_queue.py @@ -1,10 +1,8 @@ # Some simple queue module tests, plus some failure conditions # to ensure the Queue locks remain stable. -import collections import itertools import queue import random -import sys import threading import time import unittest diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index b90366d..92aefd8 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -10,7 +10,6 @@ import codecs import gc import sysconfig import locale -import threading # count the number of test runs, used to create unique # strings to intern in test_intern() diff --git a/Lib/test/test_thread.py b/Lib/test/test_thread.py index 64ffe46..f4eb830 100644 --- a/Lib/test/test_thread.py +++ b/Lib/test/test_thread.py @@ -4,7 +4,6 @@ import random from test import support import _thread as thread import time -import sys import weakref from test import lock_tests |
