Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/stringlib/
Dunicode_format.h1249 PyObject *first_obj = NULL; in formatter_field_name_split() local
1277 first_obj = PyLong_FromSsize_t(first_idx); in formatter_field_name_split()
1280 first_obj = SubString_new_object(&first); in formatter_field_name_split()
1281 if (first_obj == NULL) in formatter_field_name_split()
1285 result = PyTuple_Pack(2, first_obj, it); in formatter_field_name_split()
1289 Py_XDECREF(first_obj); in formatter_field_name_split()
/external/python/cpython2/Objects/stringlib/
Dstring_format.h1326 PyObject *first_obj = NULL; in formatter_field_name_split() local
1347 first_obj = PyLong_FromSsize_t(first_idx); in formatter_field_name_split()
1350 first_obj = SubString_new_object(&first); in formatter_field_name_split()
1351 if (first_obj == NULL) in formatter_field_name_split()
1355 result = PyTuple_Pack(2, first_obj, it); in formatter_field_name_split()
1359 Py_XDECREF(first_obj); in formatter_field_name_split()