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 jneb
Recipients jneb
Date 2020-12-18.09:35:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1608284127.41.0.53520654621.issue42673@roundup.psfhosted.org>
In-reply-to
Content
There's a trivial optimization in the round_size in hashtable.c:
a loop is used to compute the lowest power of two >= s,
while this can be done in one step with bit_length.
I am making a pull request for this.
History
Date User Action Args
2020-12-18 09:35:27jnebsetrecipients: + jneb
2020-12-18 09:35:27jnebsetmessageid: <1608284127.41.0.53520654621.issue42673@roundup.psfhosted.org>
2020-12-18 09:35:27jneblinkissue42673 messages
2020-12-18 09:35:27jnebcreate