Home
last modified time | relevance | path

Searched refs:idx_obj (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/stringlib/
Dunicode_format.h168 PyObject *idx_obj = PyLong_FromSsize_t(idx); in getitem_idx() local
169 if (idx_obj == NULL) in getitem_idx()
171 newobj = PyObject_GetItem(obj, idx_obj); in getitem_idx()
172 Py_DECREF(idx_obj); in getitem_idx()
/external/python/cpython2/Objects/stringlib/
Dstring_format.h255 PyObject *idx_obj = PyLong_FromSsize_t(idx); in getitem_idx() local
256 if (idx_obj == NULL) in getitem_idx()
258 newobj = PyObject_GetItem(obj, idx_obj); in getitem_idx()
259 Py_DECREF(idx_obj); in getitem_idx()