diff options
author | Georg Brandl <georg@python.org> | 2006-05-25 19:15:31 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-05-25 19:15:31 +0000 |
commit | 684fd0c8ec0bad54d3ff39ae15873f80e119478b (patch) | |
tree | 56596aed7bfd401ebe049e566201f75f88150b27 /Python/ceval.c | |
parent | 3b0cae9cc06374eb7a7159f1328ec700208d6109 (diff) | |
download | cpython-git-684fd0c8ec0bad54d3ff39ae15873f80e119478b.tar.gz |
Replace PyObject_CallFunction calls with only object args
with PyObject_CallFunctionObjArgs, which is 30% faster.
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index b59f718404..3043f82163 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -4053,7 +4053,7 @@ build_class(PyObject *methods, PyObject *bases, PyObject *name) metaclass = (PyObject *) &PyClass_Type; Py_INCREF(metaclass); } - result = PyObject_CallFunction(metaclass, "OOO", name, bases, methods); + result = PyObject_CallFunctionObjArgs(metaclass, name, bases, methods, NULL); Py_DECREF(metaclass); if (result == NULL && PyErr_ExceptionMatches(PyExc_TypeError)) { /* A type error here likely means that the user passed |