mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Moved the Queue module stub in lib-old.
This commit is contained in:
parent
5a3277253d
commit
f4e83dedda
1 changed files with 0 additions and 0 deletions
8
Lib/lib-old/Queue.py
Normal file
8
Lib/lib-old/Queue.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue