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 arigo
Recipients arigo, fdrake, serhiy.storchaka
Date 2016-10-14.07:57:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476431842.37.0.109626227385.issue28427@psf.upfronthosting.co.za>
In-reply-to
Content
I'll admit I don't know how to properly fix this issue.  What I came up with so far would need an atomic compare_and_delete operation on the dictionary self.data, so that we can do atomically:

+                elif self.data[wr.key] is wr:
                     del self.data[wr.key]
History
Date User Action Args
2016-10-14 07:57:22arigosetrecipients: + arigo, fdrake, serhiy.storchaka
2016-10-14 07:57:22arigosetmessageid: <1476431842.37.0.109626227385.issue28427@psf.upfronthosting.co.za>
2016-10-14 07:57:22arigolinkissue28427 messages
2016-10-14 07:57:21arigocreate