[issue30139] Fix for issue 8743 not available in python MacOS 3.5.1

2017-04-22 Thread Ned Deily
Ned Deily added the comment: > But there is no neither an entry #8743, nor neighbour entries #14710 and > #13355 in Misc/NEWS. Seems Misc/NEWS is broken. Hmm. They seem to have been properly preserved in the current 3.6 and master branch versions of Misc/HISTORY. Perhaps the 3.5 Misc/NEWS was

[issue30139] Fix for issue 8743 not available in python MacOS 3.5.1

2017-04-22 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> works for me stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Py

[issue30139] Fix for issue 8743 not available in python MacOS 3.5.1

2017-04-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: But there is no neither an entry #8743, nor neighbour entries #14710 and #13355 in Misc/NEWS. Seems Misc/NEWS is broken. -- nosy: +serhiy.storchaka resolution: works for me -> stage: resolved -> status: closed -> open __

[issue30139] Fix for issue 8743 not available in python MacOS 3.5.1

2017-04-22 Thread Ned Deily
Ned Deily added the comment: >> Then you have a broken copy of 3.5.1. Yes. You don't say from where you installed Python 3.5.1 but I just took a quick look at _collections_abc.py in both the versions installed by the python.org 3.5.1 macOS installer and by the current 3.5.3 version (which you

[issue30139] Fix for issue 8743 not available in python MacOS 3.5.1

2017-04-22 Thread R. David Murray
R. David Murray added the comment: Then you have a broken copy of 3.5.1. There is nothing OS-specific about that file. -- nosy: +r.david.murray ___ Python tracker ___ _

[issue30139] Fix for issue 8743 not available in python MacOS 3.5.1

2017-04-22 Thread Horacio Hoyos
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 should fail with Type