diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-04-10 02:04:00 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-04-10 02:04:00 (GMT) |
commit | ab3b9eb4770081b210ba1f4d878c80f2e5815bf6 (patch) | |
tree | cf4eceb50350464ff2c601da372f0845c5ecc004 /Lib/xmllib.py | |
parent | 6e99704fcffec9080e29b0ff42abff404d1e6f61 (diff) | |
download | cpython-ab3b9eb4770081b210ba1f4d878c80f2e5815bf6.zip cpython-ab3b9eb4770081b210ba1f4d878c80f2e5815bf6.tar.gz cpython-ab3b9eb4770081b210ba1f4d878c80f2e5815bf6.tar.bz2 |
Add deprecation warnings for modules as documented
Diffstat (limited to 'Lib/xmllib.py')
-rw-r--r-- | Lib/xmllib.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/xmllib.py b/Lib/xmllib.py index e8210e6..445ab13 100644 --- a/Lib/xmllib.py +++ b/Lib/xmllib.py @@ -5,6 +5,10 @@ import re import string +import warnings +warnings.warn("The xmllib module is obsolete. Use xml.sax instead.", + DeprecationWarning) +del warnings version = '0.3' |