commit | 7e1a9aacff95c68d284f31666fe293fa2db5406d | [log] [tgz] |
---|---|---|
author | Jeroen Demeyer <J.Demeyer@UGent.be> | Thu Jun 20 17:38:46 2019 +0200 |
committer | Inada Naoki <songofacandy@gmail.com> | Fri Jun 21 00:38:45 2019 +0900 |
tree | 69fd6366a3bb66c886d4ebcab44aea99c9207920 | |
parent | 8713aa6dfb2a17d6de91943ef1eb0ddba58f5b4a [diff] [blame] |
bpo-37151: remove _PyCFunction_FastCallDict (GH-14269)
diff --git a/Python/ceval.c b/Python/ceval.c index 60367a6..4ca986a 100644 --- a/Python/ceval.c +++ b/Python/ceval.c
@@ -5018,10 +5018,10 @@ return NULL; } - C_TRACE(result, _PyCFunction_FastCallDict(func, - &_PyTuple_ITEMS(callargs)[1], - nargs - 1, - kwdict)); + C_TRACE(result, _PyObject_FastCallDict(func, + &_PyTuple_ITEMS(callargs)[1], + nargs - 1, + kwdict)); Py_DECREF(func); return result; }