commit | 9ed5f2726607c57c894af24159b6a7ccf660da7f | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Tue Aug 13 20:18:52 2013 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Tue Aug 13 20:18:52 2013 +0200 |
tree | e1b779ecf1afd5d86eb955ed44b476f2d88dab10 | |
parent | 9eaa3e6732debf6a633f44cf3c82a0eaf8879a51 [diff] [blame] |
Issue #18722: Remove uses of the "register" keyword in C code.
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 @@ 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;