Horacio Hoyos added the comment:
Although I agree that some design decisions forge a language and sometimes
these historical developments win over sounder or more "logical" arguments.
That being said, I believe (as the OP of issue 8743) that the ABC collections
should comply to the
Horacio Hoyos added the comment:
Guess my second attempt didn't work as expected ;-).
I have attached the file now. To run just invoke the script:
$ python3 example.py
s&t did not screen-out general iterables
I would expect to see no output.
--
Added file: http://bugs.p
New submission from Horacio Hoyos:
Hi, attempt 2.
My system is MacOs Yosemite (10.10.5), I have installed Python 3.6.1 downloaded
from the official Python website.
I was having issues while testing a custom Set implementation using the
_collections_abc base MutableSet and found that my issue
New submission from Horacio Hoyos:
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 sh