diff options
author | Armin Rigo <arigo@tunes.org> | 2006-08-09 14:55:26 (GMT) |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2006-08-09 14:55:26 (GMT) |
commit | 51fc8c456e9bbb97f42c6990e40019cd4a5eb615 (patch) | |
tree | c687e90ad2a80154f4b2d2b39c07adc51b19260b /Objects | |
parent | 98c048041d91dc4694115e29b40182f89a3b9f1d (diff) | |
download | cpython-51fc8c456e9bbb97f42c6990e40019cd4a5eb615.zip cpython-51fc8c456e9bbb97f42c6990e40019cd4a5eb615.tar.gz cpython-51fc8c456e9bbb97f42c6990e40019cd4a5eb615.tar.bz2 |
Fix and test for an infinite C recursion.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 652009b..485d2bb 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -4560,7 +4560,7 @@ slot_tp_hash(PyObject *self) if (res == NULL) return -1; if (PyLong_Check(res)) - h = res->ob_type->tp_hash(res); + h = PyLong_Type.tp_hash(res); else h = PyInt_AsLong(res); Py_DECREF(res); |