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 Mark.Shannon
Recipients Mark.Shannon
Date 2021-09-16.11:21:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1631791278.28.0.25675084804.issue45219@roundup.psfhosted.org>
In-reply-to
Content
Specialization and other optimizations rely on shared dictionary key properties (version number, no deletions, etc).
However checking those properties during specialization is tricky and rather clunky as the dict-keys can only be tested indirectly through a dictionary.

We should add a few internal API functions. Specifically we want to know:

Is a key in a dict-keys?
What index is that key at?
Is a dict-keys all unicode?
History
Date User Action Args
2021-09-16 11:21:18Mark.Shannonsetrecipients: + Mark.Shannon
2021-09-16 11:21:18Mark.Shannonsetmessageid: <1631791278.28.0.25675084804.issue45219@roundup.psfhosted.org>
2021-09-16 11:21:18Mark.Shannonlinkissue45219 messages
2021-09-16 11:21:18Mark.Shannoncreate