summaryrefslogtreecommitdiffstats
path: root/Lib/xml
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-02-09 12:03:45 (GMT)
committerEric S. Raymond <esr@thyrsus.com>2001-02-09 12:03:45 (GMT)
commit83ff7498272c5f3acbda9b3cad0e2044ab7547c2 (patch)
treeabf864e31d01e45936b80e72d273d5abc7393eb2 /Lib/xml
parent2846b0ab417dbfc76d2f9b52b5613ad4fe8feb63 (diff)
downloadcpython-83ff7498272c5f3acbda9b3cad0e2044ab7547c2.zip
cpython-83ff7498272c5f3acbda9b3cad0e2044ab7547c2.tar.gz
cpython-83ff7498272c5f3acbda9b3cad0e2044ab7547c2.tar.bz2
String method conversion.
Diffstat (limited to 'Lib/xml')
-rw-r--r--Lib/xml/__init__.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/xml/__init__.py b/Lib/xml/__init__.py
index 2748d50..b26d378 100644
--- a/Lib/xml/__init__.py
+++ b/Lib/xml/__init__.py
@@ -15,9 +15,7 @@ sax -- The Simple API for XML, developed by XML-Dev, led by David
__all__ = ["dom", "parsers", "sax"]
-import string
-__version__ = string.split("$Revision$")[1]
-del string
+__version__ = "$Revision$".split()[1]
_MINIMUM_XMLPLUS_VERSION = (0, 6, 1)