Commit cbfdee3e authored by Antoine Pitrou's avatar Antoine Pitrou

Merged revisions 77463 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77463 | antoine.pitrou | 2010-01-13 09:55:20 +0100 (mer., 13 janv. 2010) | 3 lines

  Fix Windows build (re r77461)
........
parent f2c5484f
...@@ -6386,10 +6386,10 @@ PyObject *replace(PyUnicodeObject *self, ...@@ -6386,10 +6386,10 @@ PyObject *replace(PyUnicodeObject *self,
goto nothing; goto nothing;
if (str1->length == str2->length) { if (str1->length == str2->length) {
Py_ssize_t i;
/* same length */ /* same length */
if (str1->length == 0) if (str1->length == 0)
goto nothing; goto nothing;
Py_ssize_t i;
if (str1->length == 1) { if (str1->length == 1) {
/* replace characters */ /* replace characters */
Py_UNICODE u1, u2; Py_UNICODE u1, u2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment