[Python-checkins] cpython: Fix nasty typo
raymond.hettinger
python-checkins at python.org
Mon Jan 9 21:02:59 CET 2012
http://hg.python.org/cpython/rev/32eae3c48631
changeset: 74309:32eae3c48631
user: Raymond Hettinger <python at rcn.com>
date: Mon Jan 09 20:02:24 2012 +0000
summary:
Fix nasty typo
files:
Lib/queue.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Lib/queue.py b/Lib/queue.py
--- 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
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list