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 serhiy.storchaka
Recipients Mark.Shannon, lukasz.langa, scoder, serhiy.storchaka, v2m, yselivanov
Date 2020-10-12.19:22:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1602530549.46.0.496079479144.issue41756@roundup.psfhosted.org>
In-reply-to
Content
Few things I forget about. The new C API function should be exported in PC/python3dll.c.

Also, in Include/abstract.h it should only be available for limited C API >= 3.10:

#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030A0000
...
#endif

We now should discuss the behavior of PySend_Iter() if value is NULL. It is not documented, the current behavior differs from the behavior for non-NULL value, and it is used in the ceval loop. We should document this case explicitly and maybe change the behavior if it would be more appropriate.
History
Date User Action Args
2020-10-12 19:22:29serhiy.storchakasetrecipients: + serhiy.storchaka, scoder, lukasz.langa, Mark.Shannon, yselivanov, v2m
2020-10-12 19:22:29serhiy.storchakasetmessageid: <1602530549.46.0.496079479144.issue41756@roundup.psfhosted.org>
2020-10-12 19:22:29serhiy.storchakalinkissue41756 messages
2020-10-12 19:22:28serhiy.storchakacreate