Kaydet (Commit) b6a45051 authored tarafından Michael W. Hudson's avatar Michael W. Hudson

Cray fixup as seen in bug #558153.

üst 543fb35c
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment