summaryrefslogtreecommitdiffstats
path: root/Lib/queue.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2012-01-09 20:02:24 (GMT)
committerRaymond Hettinger <python@rcn.com>2012-01-09 20:02:24 (GMT)
commit7b7caa8ec6ba82d113121cda69583272fcde86d5 (patch)
treea23232f5b01424bc2c64661e3e4082f5b9633bd4 /Lib/queue.py
parent8bc858587305f99dc6e3c2477adaa53dab09df23 (diff)
downloadcpython-7b7caa8ec6ba82d113121cda69583272fcde86d5.zip
cpython-7b7caa8ec6ba82d113121cda69583272fcde86d5.tar.gz
cpython-7b7caa8ec6ba82d113121cda69583272fcde86d5.tar.bz2
Fix nasty typo
Diffstat (limited to 'Lib/queue.py')
-rw-r--r--Lib/queue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/queue.py b/Lib/queue.py
index 31ec46b..ba608c5 100644
--- a/Lib/queue.py
+++ b/Lib/queue.py
@@ -3,7 +3,7 @@
try:
import threading
except ImportError:
- import dummythreading as threading
+ import dummy_threading as threading
from collections import deque
from heapq import heappush, heappop
from time import time