mirror of
https://github.com/python/cpython.git
synced 2025-11-27 05:44:16 +00:00
needforspeed: use insert+reverse instead of append
This commit is contained in:
parent
684fd0c8ec
commit
554da412a8
1 changed files with 8 additions and 16 deletions
|
|
@ -1461,18 +1461,6 @@ static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"};
|
||||||
else \
|
else \
|
||||||
Py_DECREF(str);
|
Py_DECREF(str);
|
||||||
|
|
||||||
#define SPLIT_INSERT(data, left, right) \
|
|
||||||
str = PyString_FromStringAndSize((data) + (left), \
|
|
||||||
(right) - (left)); \
|
|
||||||
if (str == NULL) \
|
|
||||||
goto onError; \
|
|
||||||
if (PyList_Insert(list, 0, str)) { \
|
|
||||||
Py_DECREF(str); \
|
|
||||||
goto onError; \
|
|
||||||
} \
|
|
||||||
else \
|
|
||||||
Py_DECREF(str);
|
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
split_whitespace(const char *s, Py_ssize_t len, Py_ssize_t maxsplit)
|
split_whitespace(const char *s, Py_ssize_t len, Py_ssize_t maxsplit)
|
||||||
{
|
{
|
||||||
|
|
@ -1632,15 +1620,17 @@ rsplit_whitespace(const char *s, Py_ssize_t len, Py_ssize_t maxsplit)
|
||||||
if (j > i) {
|
if (j > i) {
|
||||||
if (maxsplit-- <= 0)
|
if (maxsplit-- <= 0)
|
||||||
break;
|
break;
|
||||||
SPLIT_INSERT(s, i + 1, j + 1);
|
SPLIT_APPEND(s, i + 1, j + 1);
|
||||||
while (i >= 0 && isspace(Py_CHARMASK(s[i])))
|
while (i >= 0 && isspace(Py_CHARMASK(s[i])))
|
||||||
i--;
|
i--;
|
||||||
j = i;
|
j = i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (j >= 0) {
|
if (j >= 0) {
|
||||||
SPLIT_INSERT(s, 0, j + 1);
|
SPLIT_APPEND(s, 0, j + 1);
|
||||||
}
|
}
|
||||||
|
if (PyList_Reverse(list) < 0)
|
||||||
|
goto onError;
|
||||||
return list;
|
return list;
|
||||||
onError:
|
onError:
|
||||||
Py_DECREF(list);
|
Py_DECREF(list);
|
||||||
|
|
@ -1661,14 +1651,16 @@ rsplit_char(const char *s, Py_ssize_t len, char ch, Py_ssize_t maxcount)
|
||||||
if (s[i] == ch) {
|
if (s[i] == ch) {
|
||||||
if (maxcount-- <= 0)
|
if (maxcount-- <= 0)
|
||||||
break;
|
break;
|
||||||
SPLIT_INSERT(s, i + 1, j + 1);
|
SPLIT_APPEND(s, i + 1, j + 1);
|
||||||
j = i = i - 1;
|
j = i = i - 1;
|
||||||
} else
|
} else
|
||||||
i--;
|
i--;
|
||||||
}
|
}
|
||||||
if (j >= -1) {
|
if (j >= -1) {
|
||||||
SPLIT_INSERT(s, 0, j + 1);
|
SPLIT_APPEND(s, 0, j + 1);
|
||||||
}
|
}
|
||||||
|
if (PyList_Reverse(list) < 0)
|
||||||
|
goto onError;
|
||||||
return list;
|
return list;
|
||||||
|
|
||||||
onError:
|
onError:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue