summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_queue.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-07-01 18:02:39 (GMT)
committerGitHub <noreply@github.com>2019-07-01 18:02:39 (GMT)
commite34b5f4d6483187969d5149c801d056b72ef2ddb (patch)
treef2a975aa16be21fc1a213856f5243194a17a2103 /Lib/test/test_queue.py
parent8cbffc4d96d1da0fbc38da6f34f2da30c5ffd601 (diff)
downloadcpython-e34b5f4d6483187969d5149c801d056b72ef2ddb.zip
cpython-e34b5f4d6483187969d5149c801d056b72ef2ddb.tar.gz
cpython-e34b5f4d6483187969d5149c801d056b72ef2ddb.tar.bz2
Remove unused imports in tests (GH-14518) (GH-14522)
(cherry picked from commit 8f4ef3b019ce380022018587571b0f970e668de3)
Diffstat (limited to 'Lib/test/test_queue.py')
-rw-r--r--Lib/test/test_queue.py2
1 files changed, 0 insertions, 2 deletions
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