diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2017-02-10 13:32:29 +0100 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2017-02-10 13:32:29 +0100 |
| commit | d3f4d3fd74ca4924bbca57433ba13435c164978e (patch) | |
| tree | 1aaa12b7205fc811dfd72143450a399d35f4fb53 /PCbuild/pythoncore.vcxproj | |
| parent | d4f3f7cf3514466c9d3c4b1b66825f1ec159f1f8 (diff) | |
| download | cpython-d3f4d3fd74ca4924bbca57433ba13435c164978e.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 'PCbuild/pythoncore.vcxproj')
| -rw-r--r-- | PCbuild/pythoncore.vcxproj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 6b23d8ecac..c18c174bf7 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -294,9 +294,10 @@ <ClCompile Include="..\Objects\abstract.c" /> <ClCompile Include="..\Objects\accu.c" /> <ClCompile Include="..\Objects\boolobject.c" /> - <ClCompile Include="..\Objects\bytes_methods.c" /> <ClCompile Include="..\Objects\bytearrayobject.c" /> + <ClCompile Include="..\Objects\bytes_methods.c" /> <ClCompile Include="..\Objects\bytesobject.c" /> + <ClCompile Include="..\Objects\call.c" /> <ClCompile Include="..\Objects\capsule.c" /> <ClCompile Include="..\Objects\cellobject.c" /> <ClCompile Include="..\Objects\classobject.c" /> |
