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 gvanrossum, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2021-04-07.18:34:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1617820440.84.0.981363394427.issue43767@roundup.psfhosted.org>
In-reply-to
Content
This issue should be fixed:

commit d36d6a9c1808e87628ebaa855d4bec80130189f4
Author: Victor Stinner <vstinner@python.org>
Date:   Wed Apr 7 13:01:09 2021 +0200

    bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243)
    
    * pycore_ast.h no longer defines the Yield macro.
    * Fix a compiler warning on Windows: "warning C4005: 'Yield': macro
      redefinition".
    * Python-ast.c now defines directly functions with their real
      _Py_xxx() name, rather than xxx().
    * Remove "#undef Yield" in C files including pycore_ast.h.
History
Date User Action Args
2021-04-07 18:34:00vstinnersetrecipients: + vstinner, gvanrossum, paul.moore, tim.golden, zach.ware, steve.dower
2021-04-07 18:34:00vstinnersetmessageid: <1617820440.84.0.981363394427.issue43767@roundup.psfhosted.org>
2021-04-07 18:34:00vstinnerlinkissue43767 messages
2021-04-07 18:34:00vstinnercreate