mirror of https://github.com/python/cpython
str.replace(a, a) is now returning str unchanged if a is a
This commit is contained in:
parent
72ca65dce4
commit
59de0ee9e0
|
@ -275,6 +275,12 @@ class UnicodeTest(string_tests.CommonTest,
|
|||
self.checkequalnofix('one@two!three!', 'one!two!three!', 'replace', '!', '@', 1)
|
||||
self.assertRaises(TypeError, 'replace'.replace, "r", 42)
|
||||
|
||||
@support.cpython_only
|
||||
def test_replace_id(self):
|
||||
a = 'a' # single ascii letters are singletons
|
||||
text = 'abc'
|
||||
self.assertIs(text.replace('a', 'a'), text)
|
||||
|
||||
def test_bytes_comparison(self):
|
||||
with support.check_warnings():
|
||||
warnings.simplefilter('ignore', BytesWarning)
|
||||
|
|
|
@ -9604,6 +9604,8 @@ replace(PyObject *self, PyObject *str1,
|
|||
else if (maxcount == 0 || slen == 0)
|
||||
goto nothing;
|
||||
|
||||
if (str1 == str2)
|
||||
goto nothing;
|
||||
if (skind < kind1)
|
||||
/* substring too wide to be present */
|
||||
goto nothing;
|
||||
|
|
Loading…
Reference in New Issue