diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2008-11-12 23:23:36 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2008-11-12 23:23:36 (GMT) |
commit | 4a1f593df5d4733831a1c4f03ca40c701433c43d (patch) | |
tree | 0aea7b57d9c6fad40a32cca6be0993bd607ed9e2 /Misc | |
parent | 3d4ca74bc85c4224498e75704f82e4d42b6a04df (diff) | |
download | cpython-4a1f593df5d4733831a1c4f03ca40c701433c43d.zip cpython-4a1f593df5d4733831a1c4f03ca40c701433c43d.tar.gz cpython-4a1f593df5d4733831a1c4f03ca40c701433c43d.tar.bz2 |
Issue #4296: Fix PyObject_RichCompareBool so that "x in [x]" evaluates to
True, even when x doesn't compare equal to itself. This was a regression
from 2.6.
Reviewed by R. Hettinger and C. Heimes.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -13,6 +13,10 @@ What's New in Python 3.0 release candiate 3? Core and Builtins ----------------- +- Issue #4296: Fix PyObject_RichCompareBool so that "x in [x]" evaluates to + True, even when x doesn't compare equal to itself. This was a regression + from 2.6. + - Issue #3705: Command-line arguments were not correctly decoded when the terminal does not use UTF8. |