diff options
author | Georg Brandl <georg@python.org> | 2008-05-25 07:08:35 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-25 07:08:35 (GMT) |
commit | c8214253f25b3263f57fc5e7f85de931207dcd61 (patch) | |
tree | 9185211be682cef5acd43fc7ceb8e2243a64c63b /Lib/lib-old | |
parent | f7cbfcffec47721c16d90cafd28cbc0fe6c563d2 (diff) | |
download | cpython-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.py | 8 |
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 |