]> granicus.if.org Git - python/commit
bpo-29524: Add Objects/call.c file (#12)
authorVictor Stinner <victor.stinner@gmail.com>
Sun, 12 Feb 2017 18:27:05 +0000 (19:27 +0100)
committerGitHub <noreply@github.com>
Sun, 12 Feb 2017 18:27:05 +0000 (19:27 +0100)
commitc22bfaae83ab5436d008ac0d13e7b47cbe776f08
tree0d134ee68cbc104bb75aa5405d35ce066d41c0d4
parent3110a379bbb1ec10a84d70a2f0faffcf8d22c7ed
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.
Include/eval.h
Makefile.pre.in
Objects/abstract.c
Objects/call.c [new file with mode: 0644]
Objects/methodobject.c
PCbuild/pythoncore.vcxproj
PCbuild/pythoncore.vcxproj.filters
Python/ceval.c
Python/modsupport.c