[Python-checkins] [python/cpython] c22bfa: bpo-29524: Add Objects/call.c file (#12)

GitHub noreply at github.com
Sun Feb 12 13:27:07 EST 2017


  Branch: refs/heads/master
  Home:   https://github.com/python/cpython
  Commit: c22bfaae83ab5436d008ac0d13e7b47cbe776f08
      https://github.com/python/cpython/commit/c22bfaae83ab5436d008ac0d13e7b47cbe776f08
  Author: Victor Stinner <victor.stinner at gmail.com>
  Date:   2017-02-12 (Sun, 12 Feb 2017)

  Changed paths:
    M Include/eval.h
    M Makefile.pre.in
    M Objects/abstract.c
    A Objects/call.c
    M Objects/methodobject.c
    M PCbuild/pythoncore.vcxproj
    M PCbuild/pythoncore.vcxproj.filters
    M Python/ceval.c
    M Python/modsupport.c

  Log Message:
  -----------
  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.




More information about the Python-checkins mailing list