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 veky
Recipients jneb, serhiy.storchaka, veky
Date 2021-08-17.08:45:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1629189906.66.0.937782968426.issue44931@roundup.psfhosted.org>
In-reply-to
Content
Your implementation has many problems. First, almost all your complexity claims are wrong, probably because you copied them from Java, which uses balanced trees instead of Python's hash tables.
(Also, the method names seem to be copied from Java, using camelCase which is unusual for Python stdlib.)

Second, shouldn't _inverse be a weakkey dictionary? Otherwise many operations (e.g. removeValue) will get two dicts out of sync quickly.
History
Date User Action Args
2021-08-17 08:45:06vekysetrecipients: + veky, jneb, serhiy.storchaka
2021-08-17 08:45:06vekysetmessageid: <1629189906.66.0.937782968426.issue44931@roundup.psfhosted.org>
2021-08-17 08:45:06vekylinkissue44931 messages
2021-08-17 08:45:06vekycreate