aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-02-12 19:27:05 +0100
committerGitHub <noreply@github.com>2017-02-12 19:27:05 +0100
commitc22bfaae83ab5436d008ac0d13e7b47cbe776f08 (patch)
tree0d134ee68cbc104bb75aa5405d35ce066d41c0d4 /Python/modsupport.c
parentbpo-29474: Improve documentation for weakref.WeakValueDictionary (#10) (diff)
downloadcpython-c22bfaae83ab5436d008ac0d13e7b47cbe776f08.tar.gz
cpython-c22bfaae83ab5436d008ac0d13e7b47cbe776f08.tar.bz2
cpython-c22bfaae83ab5436d008ac0d13e7b47cbe776f08.zip
bpo-29524: Add Objects/call.c file (#12)
* Move all functions to call objects in a new Objects/call.c file. * Rename fast_function() to _PyFunction_FastCallKeywords(). * Copy null_error() from Objects/abstract.c * Inline type_error() in call.c to not have to copy it, it was only called once. * Export _PyEval_EvalCodeWithName() since it is now called from call.c.
Diffstat (limited to 'Python/modsupport.c')
-rw-r--r--Python/modsupport.c51
1 files changed, 0 insertions, 51 deletions
diff --git a/Python/modsupport.c b/Python/modsupport.c
index e9e025bdb2b..9637191feb8 100644
--- a/Python/modsupport.c
+++ b/Python/modsupport.c
@@ -586,57 +586,6 @@ va_build_stack(PyObject **small_stack, Py_ssize_t small_stack_len,
}
-PyObject *
-PyEval_CallFunction(PyObject *callable, const char *format, ...)
-{
- va_list vargs;
- PyObject *args;
- PyObject *res;
-
- va_start(vargs, format);
-
- args = Py_VaBuildValue(format, vargs);
- va_end(vargs);
-
- if (args == NULL)
- return NULL;
-
- res = PyEval_CallObject(callable, args);
- Py_DECREF(args);
-
- return res;
-}
-
-
-PyObject *
-PyEval_CallMethod(PyObject *obj, const char *name, const char *format, ...)
-{
- va_list vargs;
- PyObject *meth;
- PyObject *args;
- PyObject *res;
-
- meth = PyObject_GetAttrString(obj, name);
- if (meth == NULL)
- return NULL;
-
- va_start(vargs, format);
-
- args = Py_VaBuildValue(format, vargs);
- va_end(vargs);
-
- if (args == NULL) {
- Py_DECREF(meth);
- return NULL;
- }
-
- res = PyEval_CallObject(meth, args);
- Py_DECREF(meth);
- Py_DECREF(args);
-
- return res;
-}
-
int
PyModule_AddObject(PyObject *m, const char *name, PyObject *o)
{