[Python-Dev] test_minidom crash
Tim Peters
tim.one@home.com
Sat, 24 Mar 2001 02:52:28 -0500
[Moshe Zadka]
> The bug is in Lib/xml/__init__.py
>
> __version__ = "1.9".split()[1]
Believe me, we would not have shipped 2.1b2 if it failed any of the std tests
(and I ran the whole suite 8 ways: with and without nuking all .pyc/.pyo
files first, with and without -O, and under release and debug builds).
> I don't know what it was supposed to be, but .split() without an
> argument splits on whitespace. best guess is "1.9".split('.') ??
On my box that line is:
__version__ = "$Revision: 1.9 $".split()[1]
So this is this some CVS retrieval screwup?