diff options
author | 2006-03-23 05:48:09 +0000 | |
---|---|---|
committer | 2006-03-23 05:48:09 +0000 | |
commit | 90768424f8c48aa0d50642cb423b356adbf2293d (patch) | |
tree | 8f8e2e3e432161eac3143a477585701176c00f01 /Python | |
parent | Heh -- used the right format for a refcount, but forgot (diff) | |
download | cpython-90768424f8c48aa0d50642cb423b356adbf2293d.tar.gz cpython-90768424f8c48aa0d50642cb423b356adbf2293d.tar.bz2 cpython-90768424f8c48aa0d50642cb423b356adbf2293d.zip |
Fix a ssize_t issue
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index de2b35b4af5..99dfc2d3b43 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -3935,7 +3935,7 @@ _PyEval_SliceIndex(PyObject *v, Py_ssize_t *pi) if (v != NULL) { Py_ssize_t x; if (PyInt_Check(v)) { - x = PyInt_AsLong(v); + x = PyInt_AsSsize_t(v); } else if (v->ob_type->tp_as_number && PyType_HasFeature(v->ob_type, Py_TPFLAGS_HAVE_INDEX) |