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 steve.dower
Recipients Christian.Tismer, Mark.Shannon, corona10, gvanrossum, kj, pablogsal, serhiy.storchaka, steve.dower, vstinner
Date 2021-09-28.16:09:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1632845352.6.0.331988141553.issue45256@roundup.psfhosted.org>
In-reply-to
Content
The goal is reduced stack depth, not reframing the entire call model around not having a C stack.

We can't even reasonably rewrite getattr() without supporting callbacks from C into Python, so further generalisation is very unlikely.

But if you inspect the native stack of most Python programs, you'll see that it's mostly taken up with calls within Python code. Compressing all of those is a significant advantage, akin to inlining the Python code at compile time, even if it doesn't see "through" native calls.
History
Date User Action Args
2021-09-28 16:09:12steve.dowersetrecipients: + steve.dower, gvanrossum, vstinner, Mark.Shannon, serhiy.storchaka, Christian.Tismer, corona10, pablogsal, kj
2021-09-28 16:09:12steve.dowersetmessageid: <1632845352.6.0.331988141553.issue45256@roundup.psfhosted.org>
2021-09-28 16:09:12steve.dowerlinkissue45256 messages
2021-09-28 16:09:12steve.dowercreate