[issue16373] Recursion error comparing set() and collections.Set instances

2013-12-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Done. -- versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue16373] Recursion error comparing set() and collections.Set instances

2013-12-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9bf55766d935 by Serhiy Storchaka in branch '2.7': Issue #16373: Prevent infinite recursion for ABC Set class comparisons. http://hg.python.org/cpython/rev/9bf55766d935 -- ___ Python tracker

[issue16373] Recursion error comparing set() and collections.Set instances

2013-12-06 Thread Raymond Hettinger
Raymond Hettinger added the comment: This should be backported to Python 2.7 as well. -- assignee: rhettinger -> serhiy.storchaka ___ Python tracker ___ _

[issue16373] Recursion error comparing set() and collections.Set instances

2012-11-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thanks, Serhiy. -- nosy: +asvetlov resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue16373] Recursion error comparing set() and collections.Set instances

2012-11-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8e95a078d490 by Andrew Svetlov in branch '3.2': Issue #16373: Prevent infinite recursion for ABC Set class operations. http://hg.python.org/cpython/rev/8e95a078d490 New changeset 11a9297733b8 by Andrew Svetlov in branch '3.3': Merge issue #16373: Pr

[issue16373] Recursion error comparing set() and collections.Set instances

2012-10-31 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue16373] Recursion error comparing set() and collections.Set instances

2012-10-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Patch updated with test which does not rely on set behaviour. -- Added file: http://bugs.python.org/file27815/abc_set_issuperset_recursion_2.patch ___ Python tracker ___

[issue16373] Recursion error comparing set() and collections.Set instances

2012-10-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: issue15246 should add a place for such test. I'm not sure that possible wrong behavior (which can be changed in issue8743) should be perpetuated in the tests. -- ___ Python tracker

[issue16373] Recursion error comparing set() and collections.Set instances

2012-10-31 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Serhiy Storchaka, I was wondering if you could provide a test for the testsuite too. -- ___ Python tracker ___ ___

[issue16373] Recursion error comparing set() and collections.Set instances

2012-10-31 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- keywords: +patch title: Recursion error comparing set() and MutableMapping.keys() -> Recursion error comparing set() and collections.Set instances Added file: http://bugs.python.org/file27814/abc_set_issuperset_recursion.patch __