diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-10-09 03:11:36 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-10-09 03:11:36 (GMT) |
commit | 4502dcd48c956d5e4cb899e8c86265195f0abcb3 (patch) | |
tree | d36ef66b97cb9c33f08e195dd7f49543213706dd /Lib/xml | |
parent | d5a713ec307766dc186913b238fbe3e92ad5fd73 (diff) | |
download | cpython-4502dcd48c956d5e4cb899e8c86265195f0abcb3.zip cpython-4502dcd48c956d5e4cb899e8c86265195f0abcb3.tar.gz cpython-4502dcd48c956d5e4cb899e8c86265195f0abcb3.tar.bz2 |
death to old CVS keyword
Diffstat (limited to 'Lib/xml')
-rw-r--r-- | Lib/xml/__init__.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/xml/__init__.py b/Lib/xml/__init__.py index fa5e8cd..deed983 100644 --- a/Lib/xml/__init__.py +++ b/Lib/xml/__init__.py @@ -19,12 +19,6 @@ etree -- The ElementTree XML library. This is a subset of the full __all__ = ["dom", "parsers", "sax", "etree"] -# When being checked-out without options, this has the form -# "<dollar>Revision: x.y </dollar>" -# When exported using -kv, it is "x.y". -__version__ = "$Revision$".split()[-2:][0] - - _MINIMUM_XMLPLUS_VERSION = (0, 8, 4) |