summaryrefslogtreecommitdiffstats
path: root/Lib/lib-old
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-25 07:08:35 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-25 07:08:35 (GMT)
commitc8214253f25b3263f57fc5e7f85de931207dcd61 (patch)
tree9185211be682cef5acd43fc7ceb8e2243a64c63b /Lib/lib-old
parentf7cbfcffec47721c16d90cafd28cbc0fe6c563d2 (diff)
downloadcpython-c8214253f25b3263f57fc5e7f85de931207dcd61.zip
cpython-c8214253f25b3263f57fc5e7f85de931207dcd61.tar.gz
cpython-c8214253f25b3263f57fc5e7f85de931207dcd61.tar.bz2
Queue renaming reversal part 1: remove stub module.
Diffstat (limited to 'Lib/lib-old')
-rw-r--r--Lib/lib-old/Queue.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/lib-old/Queue.py b/Lib/lib-old/Queue.py
deleted file mode 100644
index e358a04..0000000
--- a/Lib/lib-old/Queue.py
+++ /dev/null
@@ -1,8 +0,0 @@
-import sys
-from warnings import warnpy3k
-
-warnpy3k("the Queue module has been renamed "
- "to 'queue' in Python 3.0", stacklevel=2)
-
-import queue
-sys.modules[__name__] = queue