diff options
author | Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <thatiparthysreenivas@gmail.com> | 2018-11-10 12:52:02 +0530 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-11-10 09:22:02 +0200 |
commit | b9498e2367f21205ed2b9c172665ea6f0a218d27 (patch) | |
tree | f3b03cddd87e5c9c8315113efbea3854870f80b0 /Lib/test/test_queue.py | |
parent | 43a74abb3a87092a7fd6c71042eafb977d70d8e0 (diff) | |
download | cpython-git-b9498e2367f21205ed2b9c172665ea6f0a218d27.tar.gz |
bpo-35202: Remove unused imports in Lib directory. (GH-10446)
Diffstat (limited to 'Lib/test/test_queue.py')
-rw-r--r-- | Lib/test/test_queue.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_queue.py b/Lib/test/test_queue.py index 1a8d5f8856..c8528f9774 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 |