Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddatetimemodule.c2110 PyObject *one_million; in delta_total_seconds() local
2116 one_million = PyLong_FromLong(1000000L); in delta_total_seconds()
2117 if (one_million == NULL) { in delta_total_seconds()
2122 total_seconds = PyNumber_TrueDivide(total_microseconds, one_million); in delta_total_seconds()
2125 Py_DECREF(one_million); in delta_total_seconds()