commit | 161b92103c46311519e19e4c1f3a2315da87b2c9 | [log] [tgz] |
---|---|---|
author | Robert Schuppenies <okkotonushi@googlemail.com> | Thu Jun 26 15:20:35 2008 +0000 |
committer | Robert Schuppenies <okkotonushi@googlemail.com> | Thu Jun 26 15:20:35 2008 +0000 |
tree | ae3ec3197f5c977444512750655f071fd51f134a | |
parent | 68dc052ca6183b9225d143c91557525bc0b23d98 [diff] [blame] |
Corrected inconsistencies in sizeof tests and addressed issue pointed out by Jean Brouwers.
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 9b14e63..08a3a1e 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c
@@ -2037,7 +2037,7 @@ { Py_ssize_t res; - res = sizeof(PyDictObject) + sizeof(mp->ma_table); + res = sizeof(PyDictObject); if (mp->ma_table != mp->ma_smalltable) res = res + (mp->ma_mask + 1) * sizeof(PyDictEntry); return PyInt_FromSsize_t(res);