Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dintobject.c357 PyObject *sobj, *srepr; in PyInt_FromString() local
385 srepr = PyObject_Repr(sobj); in PyInt_FromString()
387 if (srepr == NULL) in PyInt_FromString()
391 base, PyString_AS_STRING(srepr)); in PyInt_FromString()
392 Py_DECREF(srepr); in PyInt_FromString()
1089 PyObject *srepr; in int_new() local
1090 srepr = PyObject_Repr(x); in int_new()
1091 if (srepr == NULL) in int_new()
1095 base, PyString_AS_STRING(srepr)); in int_new()
1096 Py_DECREF(srepr); in int_new()
Dlongobject.c4037 PyObject *srepr; in long_new() local
4038 srepr = PyObject_Repr(x); in long_new()
4039 if (srepr == NULL) in long_new()
4043 base, PyString_AS_STRING(srepr)); in long_new()
4044 Py_DECREF(srepr); in long_new()