diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2013-08-13 18:18:52 (GMT) |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-08-13 18:18:52 (GMT) |
| commit | 9ed5f2726607c57c894af24159b6a7ccf660da7f (patch) | |
| tree | e1b779ecf1afd5d86eb955ed44b476f2d88dab10 /Objects/stringlib/split.h | |
| parent | 9eaa3e6732debf6a633f44cf3c82a0eaf8879a51 (diff) | |
| download | cpython-9ed5f2726607c57c894af24159b6a7ccf660da7f.zip cpython-9ed5f2726607c57c894af24159b6a7ccf660da7f.tar.gz cpython-9ed5f2726607c57c894af24159b6a7ccf660da7f.tar.bz2 | |
Issue #18722: Remove uses of the "register" keyword in C code.
Diffstat (limited to 'Objects/stringlib/split.h')
| -rw-r--r-- | Objects/stringlib/split.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/stringlib/split.h b/Objects/stringlib/split.h index 947dd28..31f77a7 100644 --- a/Objects/stringlib/split.h +++ b/Objects/stringlib/split.h @@ -345,8 +345,8 @@ STRINGLIB(splitlines)(PyObject* str_obj, and the appends only done when the prealloc buffer is full. That's too much work for little gain.*/ - register Py_ssize_t i; - register Py_ssize_t j; + Py_ssize_t i; + Py_ssize_t j; PyObject *list = PyList_New(0); PyObject *sub; |
