summaryrefslogtreecommitdiffstats
path: root/Lib/xml/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/xml/__init__.py')
-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)