Issue1758276

classification
Title: equality functions like str.__eq__ return ints not bools
Type: Severity: normal
Components: None Versions:
Milestone:
process
Status: closed Resolution: duplicate
Dependencies: Superseder:
Assigned To: Nosy List: cgroves, pjenvey
Priority: normal Keywords: test failure causes

Created on 2007-07-22.00:10:05 by cgroves, last changed 2008-03-10.01:39:25 by pjenvey.

Messages
msg1749 (view) Author: Charlie Groves (cgroves) Date: 2007-07-22.00:10:05
'hello' == 'world' should return False but it returns 0.  This is causing a test failure in Lib/doctest.py
msg1750 (view) Author: Charlie Groves (cgroves) Date: 2007-07-30.04:35:28
The str portion of this failure was fixed in http://jython.org/patches/1762637 so the test failures in Lib/doctest.py no longer occur.  However, there are still a ton of places where the Py.One to Py.True and Py.Zero to Py.False migration needs to occur so I'm leaving this open.
msg3078 (view) Author: Philip Jenvey (pjenvey) Date: 2008-03-10.01:39:25
Oops, I created a dupe of this in #1839038. it's fixed now
History
Date User Action Args
2008-03-10 01:39:25pjenveysetstatus: open -> closed
resolution: duplicate
messages: + msg3078
nosy: + pjenvey
2007-07-22 00:10:05cgrovescreate