Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_marshal.py387 floatobj = 1.2345 variable in InstancingTestCase
389 dictobj = {"hello":floatobj, "goodbye":floatobj, floatobj:"hello"}
421 self.helper(self.floatobj)
422 self.helper3(self.floatobj)
/external/python/cpython3/Modules/
D_datetimemodule.c1903 get_float_as_integer_ratio(PyObject *floatobj) in get_float_as_integer_ratio() argument
1907 assert(floatobj && PyFloat_Check(floatobj)); in get_float_as_integer_ratio()
1908 ratio = _PyObject_CallMethodId(floatobj, &PyId_as_integer_ratio, NULL); in get_float_as_integer_ratio()
1931 multiply_truedivide_timedelta_float(PyDateTime_Delta *delta, PyObject *floatobj, int op) in multiply_truedivide_timedelta_float() argument
1940 ratio = get_float_as_integer_ratio(floatobj); in multiply_truedivide_timedelta_float()