mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
Cray fixup as seen in bug #558153.
This commit is contained in:
parent
543fb35cca
commit
b6a4505123
1 changed files with 2 additions and 2 deletions
|
|
@ -1785,7 +1785,7 @@ deepcopy(PyObject** object, PyObject* memo)
|
|||
#endif
|
||||
|
||||
static PyObject*
|
||||
join(PyObject* list, PyObject* pattern)
|
||||
join_list(PyObject* list, PyObject* pattern)
|
||||
{
|
||||
/* join list elements */
|
||||
|
||||
|
|
@ -2238,7 +2238,7 @@ next:
|
|||
Py_DECREF(filter);
|
||||
|
||||
/* convert list to single string (also removes list) */
|
||||
item = join(list, self->pattern);
|
||||
item = join_list(list, self->pattern);
|
||||
|
||||
if (!item)
|
||||
return NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue