mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Spaces vs. Tabs.
This commit is contained in:
parent
31645ba4a0
commit
ede3a3218e
1 changed files with 4 additions and 4 deletions
|
@ -270,9 +270,9 @@ lookdict(PyDictObject *mp, PyObject *key, register long hash)
|
|||
else {
|
||||
if (ep->me_hash == hash) {
|
||||
startkey = ep->me_key;
|
||||
Py_INCREF(startkey);
|
||||
Py_INCREF(startkey);
|
||||
cmp = PyObject_RichCompareBool(startkey, key, Py_EQ);
|
||||
Py_DECREF(startkey);
|
||||
Py_DECREF(startkey);
|
||||
if (cmp < 0)
|
||||
return NULL;
|
||||
if (ep0 == mp->ma_table && ep->me_key == startkey) {
|
||||
|
@ -302,9 +302,9 @@ lookdict(PyDictObject *mp, PyObject *key, register long hash)
|
|||
return ep;
|
||||
if (ep->me_hash == hash && ep->me_key != dummy) {
|
||||
startkey = ep->me_key;
|
||||
Py_INCREF(startkey);
|
||||
Py_INCREF(startkey);
|
||||
cmp = PyObject_RichCompareBool(startkey, key, Py_EQ);
|
||||
Py_DECREF(startkey);
|
||||
Py_DECREF(startkey);
|
||||
if (cmp < 0)
|
||||
return NULL;
|
||||
if (ep0 == mp->ma_table && ep->me_key == startkey) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue