diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-06-30 15:08:22 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-06-30 15:08:22 (GMT) |
commit | adfa7409f8286bd9581d5decfac5a5edcc1aa7de (patch) | |
tree | b7050512b773946fb73bdd9d213095b9ad694f75 /Lib/xml | |
parent | 7d650ca83bfdc42e852a4a6af00b80d230ecc54a (diff) | |
download | cpython-adfa7409f8286bd9581d5decfac5a5edcc1aa7de.zip cpython-adfa7409f8286bd9581d5decfac5a5edcc1aa7de.tar.gz cpython-adfa7409f8286bd9581d5decfac5a5edcc1aa7de.tar.bz2 |
Bump required PyXML version to 0.6.5.
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 d189823..1e21815 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, 6, 1) +_MINIMUM_XMLPLUS_VERSION = (0, 6, 5) try: |