diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-11 23:04:27 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-11 23:04:27 (GMT) |
commit | f4e83deddaeaab237d2626986702d0c819d7f4c3 (patch) | |
tree | c52801586394d870ede391d19c762426dd3c9fbb /Lib/Queue.py | |
parent | 5a3277253de7bbcee1b2180578a7d29958a10488 (diff) | |
download | cpython-f4e83deddaeaab237d2626986702d0c819d7f4c3.zip cpython-f4e83deddaeaab237d2626986702d0c819d7f4c3.tar.gz cpython-f4e83deddaeaab237d2626986702d0c819d7f4c3.tar.bz2 |
Moved the Queue module stub in lib-old.
Diffstat (limited to 'Lib/Queue.py')
-rw-r--r-- | Lib/Queue.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/Queue.py b/Lib/Queue.py deleted file mode 100644 index e358a04..0000000 --- a/Lib/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 |