summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-09-17 07:59:14 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-09-17 07:59:14 +0000
commit1a6f42663b7d4436401a91076b42ea173e916347 (patch)
treeb771ccde99e3795c7f0f997986701f5059577481 /Include
parent7e6c9ee7cf3302d359264b6df1258b46bac0f3c1 (diff)
parentbc1cb95bd347492d1d7a921dbcafc8b0d3c55a8f (diff)
downloadcpython-1a6f42663b7d4436401a91076b42ea173e916347.tar.gz
Issue #28139: Merge indentation fixes from 3.5 into 3.6
Diffstat (limited to 'Include')
-rw-r--r--Include/unicodeobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index bc6ecd4e81..20331a3905 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 */