Cray fixup as seen in bug #558153.

This commit is contained in:
Michael W. Hudson 2002-07-31 09:54:24 +00:00
parent 543fb35cca
commit b6a4505123

View file

@ -1785,7 +1785,7 @@ deepcopy(PyObject** object, PyObject* memo)
#endif #endif
static PyObject* static PyObject*
join(PyObject* list, PyObject* pattern) join_list(PyObject* list, PyObject* pattern)
{ {
/* join list elements */ /* join list elements */
@ -2238,7 +2238,7 @@ next:
Py_DECREF(filter); Py_DECREF(filter);
/* convert list to single string (also removes list) */ /* convert list to single string (also removes list) */
item = join(list, self->pattern); item = join_list(list, self->pattern);
if (!item) if (!item)
return NULL; return NULL;