[Python-checkins] cpython (3.4): Issue #22975: Close block at right place.

serhiy.storchaka python-checkins at python.org
Mon Dec 1 17:59:23 CET 2014


https://hg.python.org/cpython/rev/15a1070a2c66
changeset:   93684:15a1070a2c66
branch:      3.4
parent:      93682:a4f3e78f68e4
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Mon Dec 01 18:56:28 2014 +0200
summary:
  Issue #22975: Close block at right place.

files:
  Objects/unicodeobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -9891,9 +9891,9 @@
             Py_UCS4 * to_ = (Py_UCS4 *)((data)) + (start); \
             for (; i_ < (length); ++i_, ++to_) *to_ = (value); \
             break; \
+        } \
         default: assert(0); \
         } \
-        } \
     } while (0)
 
 void

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list