mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Issue #28139: Merge indentation fixes from 3.5 into 3.6
This commit is contained in:
commit
d508d00919
7 changed files with 38 additions and 32 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue