PyAPI: avoid redundant PyLong_AsLong call

Assigning to an RNA array converted from Python to C twice.
This commit is contained in:
Campbell Barton 2017-08-20 15:28:06 +10:00 committed by Bastien Montagne
parent 7b397cdfc8
commit beea9421bd
1 changed files with 1 additions and 1 deletions

View File

@ -2712,7 +2712,7 @@ static PyObject *pyrna_prop_array_subscript(BPy_PropertyArrayRNA *self, PyObject
Py_ssize_t i = PyNumber_AsSsize_t(key, PyExc_IndexError);
if (i == -1 && PyErr_Occurred())
return NULL;
return pyrna_prop_array_subscript_int(self, PyLong_AsLong(key));
return pyrna_prop_array_subscript_int(self, i);
}
else if (PySlice_Check(key)) {
Py_ssize_t step = 1;