summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 3d49db1..d8d9c35 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -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;