Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dfloatobject.c1453 PyObject *result_as_float, *result; in float_fromhex() local
1676 result_as_float = Py_BuildValue("(d)", sign * x); in float_fromhex()
1677 if (result_as_float == NULL) in float_fromhex()
1679 result = PyObject_CallObject(cls, result_as_float); in float_fromhex()
1680 Py_DECREF(result_as_float); in float_fromhex()