]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #22975: Close block at right place.
authorSerhiy Storchaka <storchaka@gmail.com>
Mon, 1 Dec 2014 16:56:28 +0000 (18:56 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Mon, 1 Dec 2014 16:56:28 +0000 (18:56 +0200)
Objects/unicodeobject.c

index 3bf19328bc57d75e8bf35ba60526ea45e91f49fd..70728f840ca44b9ca77f6c66f8d7489101cd1dcc 100644 (file)
@@ -9891,8 +9891,8 @@ PyUnicode_Join(PyObject *separator, PyObject *seq)
             Py_UCS4 * to_ = (Py_UCS4 *)((data)) + (start); \
             for (; i_ < (length); ++i_, ++to_) *to_ = (value); \
             break; \
-        default: assert(0); \
         } \
+        default: assert(0); \
         } \
     } while (0)