This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients methane, serhiy.storchaka, vstinner
Date 2017-02-12.22:03:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1486937028.79.0.0420455231639.issue29524@psf.upfronthosting.co.za>
In-reply-to
Content
commit c22bfaae83ab5436d008ac0d13e7b47cbe776f08
Author: Victor Stinner <victor.stinner@gmail.com>
Date:   Sun Feb 12 19:27:05 2017 +0100

    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.

Thanks Serhiy and Naoki for your reviews!

It's probably not perfect, but IMHO it's better than what we had previously, and we can rework this file later.

About file history: "git blame Objects/call.c" shows me that the first and only author, *but* "git blame -C Objects/call.c" works as expected (show the full history)!
History
Date User Action Args
2017-02-12 22:03:48vstinnersetrecipients: + vstinner, methane, serhiy.storchaka
2017-02-12 22:03:48vstinnersetmessageid: <1486937028.79.0.0420455231639.issue29524@psf.upfronthosting.co.za>
2017-02-12 22:03:48vstinnerlinkissue29524 messages
2017-02-12 22:03:48vstinnercreate