diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-10-13 19:57:14 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-10-13 19:57:14 (GMT) |
commit | 4b9059b4375259f869b3bdaaee7b3483e75ba009 (patch) | |
tree | 8173a19a4c7aa102767da80c4c343496bb8eb605 /Lib/xml | |
parent | 9171f0213247c51229cbdfcf06df36378558c96e (diff) | |
download | cpython-4b9059b4375259f869b3bdaaee7b3483e75ba009.zip cpython-4b9059b4375259f869b3bdaaee7b3483e75ba009.tar.gz cpython-4b9059b4375259f869b3bdaaee7b3483e75ba009.tar.bz2 |
Require minimally PyXML 0.8.4.
Diffstat (limited to 'Lib/xml')
-rw-r--r-- | Lib/xml/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/__init__.py b/Lib/xml/__init__.py index dc50cb3..e5f28b0 100644 --- a/Lib/xml/__init__.py +++ b/Lib/xml/__init__.py @@ -21,7 +21,7 @@ __all__ = ["dom", "parsers", "sax"] __version__ = "$Revision$".split()[-2:][0] -_MINIMUM_XMLPLUS_VERSION = (0, 8, 2) +_MINIMUM_XMLPLUS_VERSION = (0, 8, 4) try: |