From: Raymond Hettinger Date: Mon, 9 Jan 2012 20:02:24 +0000 (+0000) Subject: Fix nasty typo X-Git-Tag: v3.3.0a1~450 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7b7caa8ec6ba82d113121cda69583272fcde86d5;p=thirdparty%2FPython%2Fcpython.git Fix nasty typo --- diff --git a/Lib/queue.py b/Lib/queue.py index 31ec46b6978a..ba608c5a4c24 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