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 Horacio Hoyos
Recipients Horacio Hoyos, ned.deily, ronaldoussoren
Date 2017-04-22.18:54:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1492887260.31.0.89800718896.issue30139@psf.upfronthosting.co.za>
In-reply-to
Content
Hi all,

I was having issues while testing a custom Set implementation using the _collections_abc base MutableSet and found that my issue was apparently resolved with issue 8743. My test is simple:

ms = MySetImpl()
ms & 'testword'

which should fail with TypeError, given that in the 8743 fix the __and__ incorporated a test for isinstance(other, Set).

Looking at the _collections_abc.py in my installation (/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/_collections_abc.py) I can not see the changes in the patches submitted for issue 8743.
History
Date User Action Args
2017-04-22 18:54:20Horacio Hoyossetrecipients: + Horacio Hoyos, ronaldoussoren, ned.deily
2017-04-22 18:54:20Horacio Hoyossetmessageid: <1492887260.31.0.89800718896.issue30139@psf.upfronthosting.co.za>
2017-04-22 18:54:20Horacio Hoyoslinkissue30139 messages
2017-04-22 18:54:20Horacio Hoyoscreate