diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-01 16:56:54 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-01 16:56:54 (GMT) |
commit | 407249c62b8e0b44cd13e7c9dec1ad1affae4912 (patch) | |
tree | 6316c124ff240c38034e74097f10fb8c6b8abba4 /Objects | |
parent | 83000a490a36f4c3c579151ff09eeb4875d0d4cd (diff) | |
parent | 133b11b566f06e24e4610cde6a9d2bba289ee673 (diff) | |
download | cpython-407249c62b8e0b44cd13e7c9dec1ad1affae4912.zip cpython-407249c62b8e0b44cd13e7c9dec1ad1affae4912.tar.gz cpython-407249c62b8e0b44cd13e7c9dec1ad1affae4912.tar.bz2 |
Issue #22975: Close block at right place.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 5234901..f25f6c8 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -9880,8 +9880,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) |