]> granicus.if.org Git - python/commitdiff
Merged revisions 77463 via svnmerge from
authorAntoine Pitrou <solipsis@pitrou.net>
Wed, 13 Jan 2010 08:58:08 +0000 (08:58 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Wed, 13 Jan 2010 08:58:08 +0000 (08:58 +0000)
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)
........

Objects/unicodeobject.c

index 3d49db162b473fb64f5c53e531783a1a083ac10e..d8d9c35690955bf607f7027715c7d2a2877cfb44 100644 (file)
@@ -6386,10 +6386,10 @@ PyObject *replace(PyUnicodeObject *self,
         goto nothing;
 
     if (str1->length == str2->length) {
+        Py_ssize_t i;
         /* same length */
         if (str1->length == 0)
             goto nothing;
-        Py_ssize_t i;
         if (str1->length == 1) {
             /* replace characters */
             Py_UNICODE u1, u2;