summaryrefslogtreecommitdiffstats
path: root/Lib/threading.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-08-13 14:40:29 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2001-08-13 14:40:29 (GMT)
commita49e0a0893ed83f0571b19fc29a3263edf53e7f6 (patch)
treef341ed8a9a16367b5f352c5292c028f673067243 /Lib/threading.py
parent3e4424848350484e4d14794e8af27f63f07b19ca (diff)
downloadcpython-a49e0a0893ed83f0571b19fc29a3263edf53e7f6.zip
cpython-a49e0a0893ed83f0571b19fc29a3263edf53e7f6.tar.gz
cpython-a49e0a0893ed83f0571b19fc29a3263edf53e7f6.tar.bz2
Remove unused imports (PyChecker)
Diffstat (limited to 'Lib/threading.py')
-rw-r--r--Lib/threading.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/threading.py b/Lib/threading.py
index 74e93bb..0936e31 100644
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -551,8 +551,6 @@ _MainThread()
def _test():
- import random
-
class BoundedQueue(_Verbose):
def __init__(self, limit):
@@ -615,8 +613,6 @@ def _test():
print item
self.count = self.count - 1
- import time
-
NP = 3
QL = 4
NI = 5