diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-05-08 20:36:09 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-05-08 20:36:09 (GMT) |
commit | e3b1940eb9eedb752e23310a2b846cb91a970675 (patch) | |
tree | a4f50e74016007ee243d850dffd1a851fa0d650a /Lib/user.py | |
parent | cae4f5f4ac8d107af3ee4877ea501ff27cd70192 (diff) | |
download | cpython-e3b1940eb9eedb752e23310a2b846cb91a970675.zip cpython-e3b1940eb9eedb752e23310a2b846cb91a970675.tar.gz cpython-e3b1940eb9eedb752e23310a2b846cb91a970675.tar.bz2 |
Deprecate the user module for removal in 3.0.
Diffstat (limited to 'Lib/user.py')
-rw-r--r-- | Lib/user.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/user.py b/Lib/user.py index e550e52..596f0a7 100644 --- a/Lib/user.py +++ b/Lib/user.py @@ -20,6 +20,9 @@ The user's .pythonrc.py could conceivably test for sys.version if it wishes to do different things depending on the Python version. """ +from warnings import warnpy3k +warnpy3k("the user module has been removed in Python 3.0", stacklevel=2) +del warnpy3k import os |