]> granicus.if.org Git - python/commitdiff
Fix nasty typo
authorRaymond Hettinger <python@rcn.com>
Mon, 9 Jan 2012 20:02:24 +0000 (20:02 +0000)
committerRaymond Hettinger <python@rcn.com>
Mon, 9 Jan 2012 20:02:24 +0000 (20:02 +0000)
Lib/queue.py

index 31ec46b6978a482824cf73c8a5ae6b676396f251..ba608c5a4c242b04431a17ab24479b117d6cd006 100644 (file)
@@ -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