diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-01-15 19:32:23 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-01-15 19:32:23 (GMT) |
commit | cce2f217d403dff7344fcc1c381e36dfd075a961 (patch) | |
tree | 87189334129e9ca408a823ea98d3b1dd512addd3 /Modules/_struct.c | |
parent | 29500f64b609e312e72150f0539c4508d650656b (diff) | |
download | cpython-cce2f217d403dff7344fcc1c381e36dfd075a961.zip cpython-cce2f217d403dff7344fcc1c381e36dfd075a961.tar.gz cpython-cce2f217d403dff7344fcc1c381e36dfd075a961.tar.bz2 |
Issue 4910, patch 2 of (probably) 3: pave the way for renaming of
nb_long: remove last remaining use of nb_long
(in the struct module) from the core, set nb_long slots on all builtin
and extension types to 0, and remove uses of __long__ in test_complex
and test_binop.
Reviewed by Benjamin Peterson.
Diffstat (limited to 'Modules/_struct.c')
-rw-r--r-- | Modules/_struct.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_struct.c b/Modules/_struct.c index a9b1ffa..a99e7f2 100644 --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -127,8 +127,8 @@ get_pylong(PyObject *v) return v; } m = Py_TYPE(v)->tp_as_number; - if (m != NULL && m->nb_long != NULL) { - v = m->nb_long(v); + if (m != NULL && m->nb_int != NULL) { + v = m->nb_int(v); if (v == NULL) return NULL; if (PyLong_Check(v)) |