Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b6a4505

Browse files
author
Michael W. Hudson
committed
Cray fixup as seen in bug #558153.
1 parent 543fb35 commit b6a4505

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/_sre.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1785,7 +1785,7 @@ deepcopy(PyObject** object, PyObject* memo)
17851785
#endif
17861786

17871787
static PyObject*
1788-
join(PyObject* list, PyObject* pattern)
1788+
join_list(PyObject* list, PyObject* pattern)
17891789
{
17901790
/* join list elements */
17911791

@@ -2238,7 +2238,7 @@ pattern_subx(PatternObject* self, PyObject* template, PyObject* string,
22382238
Py_DECREF(filter);
22392239

22402240
/* convert list to single string (also removes list) */
2241-
item = join(list, self->pattern);
2241+
item = join_list(list, self->pattern);
22422242

22432243
if (!item)
22442244
return NULL;

0 commit comments

Comments
 (0)