Re: [Python-Dev] string inconsistency

2006-06-01 Thread Tim Peters
[Neal] > This is still in Lib/test/string_tests.py: > > #EQ("A", "", "replace", "", "A") > # That was the correct result; this is the result we actually get > # now (for str, but not for unicode): > #EQ("", "", "replace", "", "A") > > Is this going to be fixed? Done

[Python-Dev] string inconsistency

2006-05-31 Thread Neal Norwitz
This is still in Lib/test/string_tests.py: #EQ("A", "", "replace", "", "A") # That was the correct result; this is the result we actually get # now (for str, but not for unicode): #EQ("", "", "replace", "", "A") Is this going to be fixed? n ___