forked frompython/cpython
- Notifications
You must be signed in to change notification settings - Fork0
Commitc22bfaa
authored
bpo-29524: Add Objects/call.c file (python#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.1 parent3110a37 commitc22bfaa
File tree
9 files changed
+1393
-1345
lines changed- Include
- Objects
- PCbuild
- Python
9 files changed
+1393
-1345
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
21 | 31 | | |
22 | 32 | | |
23 | 33 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
409 | 409 | | |
410 | 410 | | |
411 | 411 | | |
| 412 | + | |
412 | 413 | | |
413 | 414 | | |
414 | 415 | | |
| |||
0 commit comments
Comments
(0)