commit | 18b711c5a7f90d88fb74748f18fa8ef49d8486c7 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Sun Aug 04 14:12:48 2019 +0300 |
committer | GitHub <noreply@github.com> | Sun Aug 04 14:12:48 2019 +0300 |
tree | d04ab59ccadbade80f8999c921dd3a19b62a9cc9 | |
parent | 17e52649c0e7e9389f1cc2444a53f059e24e6bca [diff] [blame] |
bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904) The collection's item is now always at the left and the needle is on the right of ==.
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index b6205d9..f168ad5 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c
@@ -4392,7 +4392,7 @@ return 0; } Py_INCREF(found); - result = PyObject_RichCompareBool(value, found, Py_EQ); + result = PyObject_RichCompareBool(found, value, Py_EQ); Py_DECREF(found); return result; }