mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
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.
This commit is contained in:
parent
3110a379bb
commit
c22bfaae83
9 changed files with 1393 additions and 1345 deletions
|
|
@ -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" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue