mirror of https://github.com/python/cpython
Typo in bytes.replace(): the buffer interface was always used.
This commit is contained in:
parent
39599dca9d
commit
4d279c1f80
|
@ -2594,7 +2594,7 @@ string_replace(PyStringObject *self, PyObject *args)
|
||||||
from_s = PyString_AS_STRING(from);
|
from_s = PyString_AS_STRING(from);
|
||||||
from_len = PyString_GET_SIZE(from);
|
from_len = PyString_GET_SIZE(from);
|
||||||
}
|
}
|
||||||
if (PyUnicode_Check(from))
|
else if (PyUnicode_Check(from))
|
||||||
return PyUnicode_Replace((PyObject *)self,
|
return PyUnicode_Replace((PyObject *)self,
|
||||||
from, to, count);
|
from, to, count);
|
||||||
else if (PyObject_AsCharBuffer(from, &from_s, &from_len))
|
else if (PyObject_AsCharBuffer(from, &from_s, &from_len))
|
||||||
|
|
Loading…
Reference in New Issue