diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-09-17 07:59:14 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-09-17 07:59:14 (GMT) |
commit | d508d00919dccbc9dd5d3c86508f2db7a7c753a7 (patch) | |
tree | 141cdfbf0908146bab12636e5b270e59ea06b3a5 /Include/unicodeobject.h | |
parent | abf275af5804c5f76fbe10c5cb1dd3d2e4b04c5b (diff) | |
parent | 6d57fe1c23430d0d51de243a177670b76c37dab5 (diff) | |
download | cpython-d508d00919dccbc9dd5d3c86508f2db7a7c753a7.zip cpython-d508d00919dccbc9dd5d3c86508f2db7a7c753a7.tar.gz cpython-d508d00919dccbc9dd5d3c86508f2db7a7c753a7.tar.bz2 |
Issue #28139: Merge indentation fixes from 3.5 into 3.6
Diffstat (limited to 'Include/unicodeobject.h')
-rw-r--r-- | Include/unicodeobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index bc6ecd4..20331a3 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -160,7 +160,7 @@ typedef uint8_t Py_UCS1; #define Py_UNICODE_FILL(target, value, length) \ do {Py_ssize_t i_; Py_UNICODE *t_ = (target); Py_UNICODE v_ = (value);\ - for (i_ = 0; i_ < (length); i_++) t_[i_] = v_;\ + for (i_ = 0; i_ < (length); i_++) t_[i_] = v_;\ } while (0) /* macros to work with surrogates */ |