We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5100133 commit 1402ab2Copy full SHA for 1402ab2
1 file changed
Lib/xml/__init__.py
@@ -15,7 +15,9 @@
15
16
__all__ = ["dom", "parsers", "sax"]
17
18
-__version__ = "$Revision$"[1:-1].split()[1]
+import string
19
+__version__ = string.split("$Revision$")[1]
20
+del string
21
22
23
_MINIMUM_XMLPLUS_VERSION = (0, 6, 1)
0 commit comments