summaryrefslogtreecommitdiff
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-02-10 13:32:29 +0100
committerVictor Stinner <victor.stinner@gmail.com>2017-02-10 13:32:29 +0100
commit766af559ad967dcf5b2810331c331fe8773b8ef3 (patch)
tree614fd016c90bd3dd9c10dc9b819c151cb6f42616 /Makefile.pre.in
parent109a9fe7960c5bac931aa817e57da7556d64e4a6 (diff)
downloadcpython-git-766af559ad967dcf5b2810331c331fe8773b8ef3.tar.gz
Issue #29465: Add Objects/call.c file
* 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 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 8752a02031..c1b4538d31 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -409,6 +409,7 @@ OBJECT_OBJS= \
Objects/bytes_methods.o \
Objects/bytearrayobject.o \
Objects/bytesobject.o \
+ Objects/call.o \
Objects/cellobject.o \
Objects/classobject.o \
Objects/codeobject.o \