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 Marco Sulla, Mark.Shannon, methane, serhiy.storchaka
Date 2020-10-31.14:04:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1604153092.68.0.719444098074.issue41835@roundup.psfhosted.org>
In-reply-to
Content
Do not overestimate the importance of _PyStack_AsDict(). Most of calls (~90-95% or like) are with positional only arguments, and most of functions do not have var-keyword parameter. So efforts in last years were spent on optimizing common cases, in particularly avoiding creation of a dict without need. _PyStack_AsDict() can affect perhaps 1% of code, or less, and these functions are usually not performance critical.
History
Date User Action Args
2020-10-31 14:04:52serhiy.storchakasetrecipients: + serhiy.storchaka, methane, Mark.Shannon, Marco Sulla
2020-10-31 14:04:52serhiy.storchakasetmessageid: <1604153092.68.0.719444098074.issue41835@roundup.psfhosted.org>
2020-10-31 14:04:52serhiy.storchakalinkissue41835 messages
2020-10-31 14:04:52serhiy.storchakacreate