schen added the comment:
The usage text in build.bat still mentions that svn.exe is required for the
'-e' flag. I think it should be updated to reflect the changes made.
--
nosy: +schen
___
Python tracker
<http://bugs.python.o
schen added the comment:
What is the rationale for the inconsistency between tuples and lists here?
().index(0)
ValueError: tuple.index(x): x not in tuple
[].index(0)
ValueError: 0 is not in list
In this simple artificial case, it seems clear to me that the list version
(which is similar to