mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Use the string module instead of string methods; this should still work
with Python 1.5.2 for now.
This commit is contained in:
@@ -15,7 +15,9 @@ sax -- The Simple API for XML, developed by XML-Dev, led by David
|
||||
|
||||
__all__ = ["dom", "parsers", "sax"]
|
||||
|
||||
__version__ = "$Revision$"[1:-1].split()[1]
|
||||
import string
|
||||
__version__ = string.split("$Revision$")[1]
|
||||
del string
|
||||
|
||||
|
||||
_MINIMUM_XMLPLUS_VERSION = (0, 6, 1)
|
||||
|
||||
Reference in New Issue
Block a user