From: Victor Stinner Date: Fri, 19 Aug 2016 23:38:00 +0000 (+0200) Subject: pattern_subx() now uses fast call X-Git-Tag: v3.6.0b1~636 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea5e5990c9a26b81b149417239e0fe435a621818;p=thirdparty%2FPython%2Fcpython.git pattern_subx() now uses fast call Issue #27128. --- diff --git a/Modules/_sre.c b/Modules/_sre.c index 6f8ec0e53814..3e8d7f8b48d7 100644 --- a/Modules/_sre.c +++ b/Modules/_sre.c @@ -1056,7 +1056,6 @@ pattern_subx(PatternObject* self, PyObject* ptemplate, PyObject* string, PyObject* joiner; PyObject* item; PyObject* filter; - PyObject* args; PyObject* match; void* ptr; Py_ssize_t status; @@ -1158,13 +1157,7 @@ pattern_subx(PatternObject* self, PyObject* ptemplate, PyObject* string, match = pattern_new_match(self, &state, 1); if (!match) goto error; - args = PyTuple_Pack(1, match); - if (!args) { - Py_DECREF(match); - goto error; - } - item = PyObject_CallObject(filter, args); - Py_DECREF(args); + item = _PyObject_FastCall(filter, &match, 1, NULL); Py_DECREF(match); if (!item) goto error;