Fix a ssize_t issue

This commit is contained in:
Neal Norwitz 2006-03-23 05:48:09 +00:00
parent 8af92d1f6c
commit 90768424f8
1 changed files with 1 additions and 1 deletions

View File

@ -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)