summaryrefslogtreecommitdiffstats
path: root/Modules/pyexpat.c
diff options
context:
space:
mode:
authorJeroen Demeyer <J.Demeyer@UGent.be>2019-07-11 15:57:32 (GMT)
committerInada Naoki <songofacandy@gmail.com>2019-07-11 15:57:32 (GMT)
commit1dbd084f1f68d7293718b663df675cfbd0c65712 (patch)
tree134dd51d1364168e6f55f6dae348213dbdd136d7 /Modules/pyexpat.c
parent9b5ce62cac27fec9dea473865d79c2c654312957 (diff)
downloadcpython-1dbd084f1f68d7293718b663df675cfbd0c65712.zip
cpython-1dbd084f1f68d7293718b663df675cfbd0c65712.tar.gz
cpython-1dbd084f1f68d7293718b663df675cfbd0c65712.tar.bz2
bpo-29548: no longer use PyEval_Call* functions (GH-14683)
Diffstat (limited to 'Modules/pyexpat.c')
-rw-r--r--Modules/pyexpat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c
index 3d193e7..b0096e6 100644
--- a/Modules/pyexpat.c
+++ b/Modules/pyexpat.c
@@ -208,7 +208,7 @@ call_with_frame(const char *funcname, int lineno, PyObject* func, PyObject* args
{
PyObject *res;
- res = PyEval_CallObject(func, args);
+ res = PyObject_Call(func, args, NULL);
if (res == NULL) {
_PyTraceback_Add(funcname, __FILE__, lineno);
XML_StopParser(self->itself, XML_FALSE);