Issue1758280

classification
Title: Circular implementation of == returns False instead of True
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: invalid
Dependencies: Superseder:
Assigned To: Nosy List: cgroves, fwierzbicki, pjenvey, zyasoft
Priority: low Keywords: test failure causes

Created on 2007-07-22.00:27:43 by cgroves, last changed 2015-01-07.08:20:41 by zyasoft.

Messages
msg1753 (view) Author: Charlie Groves (cgroves) Date: 2007-07-22.00:27:43
MiscTest.test_recursion2 from CPython expects a class with a circular implementation of __eq__ to return false  but it returns true in Jython.
msg1754 (view) Author: Charlie Groves (cgroves) Date: 2007-08-06.00:05:45
See http://wiki.python.org/jython/JythonDeveloperGuide/VersionTransitionTestExclusions for how to get the test running again to fix this.
msg3831 (view) Author: Philip Jenvey (pjenvey) Date: 2008-11-23.05:06:07
MiscTest.test_recursion2 refers to test_richcmp. It's now called just 
test_recursion
msg9345 (view) Author: Jim Baker (zyasoft) Date: 2015-01-07.08:20:41
test_richcmp works fine now, I'm sure it's been fixed for a while
History
Date User Action Args
2015-01-07 08:20:41zyasoftsetstatus: open -> closed
resolution: invalid
messages: + msg9345
nosy: + zyasoft
2013-02-26 18:50:16fwierzbickisetnosy: + fwierzbicki
2008-12-15 19:06:51fwierzbickisetcomponents: + Core, - None
2008-11-23 05:06:07pjenveysetnosy: + pjenvey
messages: + msg3831
2007-07-22 00:27:43cgrovescreate