Message2060

Author jek
Recipients
Date 2008-01-16.19:32:01
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
A generic 's += o' doesn't seem to be processing NotImplemented returned by s.__iadd__(o).  On CPython, evaluation seems to fall back to o.__radd__(s) in this case.  In Jython, s == NotImplemented after that +=.

The __iadd__ on Jython's list does seem to recognize NotImplemented but doesn't fall back to __radd__.
History
Date User Action Args
2008-02-20 17:18:09adminlinkissue1873148 messages
2008-02-20 17:18:09admincreate