Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_testcapimodule.c2586 PyObject *tsargs = NULL, *ts = NULL, *rv = NULL; in get_date_fromtimestamp() local
2594 if ((tsargs = PyTuple_Pack(1, ts)) == NULL) { in get_date_fromtimestamp()
2600 rv = PyDate_FromTimestamp(tsargs); in get_date_fromtimestamp()
2604 (PyObject *)PyDateTimeAPI->DateType, tsargs in get_date_fromtimestamp()
2608 Py_DECREF(tsargs); in get_date_fromtimestamp()
2617 PyObject *tsargs = NULL, *ts = NULL, *tzinfo = Py_None, *rv = NULL; in get_datetime_fromtimestamp() local
2624 tsargs = PyTuple_Pack(2, ts, tzinfo); in get_datetime_fromtimestamp()
2627 tsargs = PyTuple_Pack(1, ts); in get_datetime_fromtimestamp()
2630 if (tsargs == NULL) { in get_datetime_fromtimestamp()
2636 rv = PyDateTime_FromTimestamp(tsargs); in get_datetime_fromtimestamp()
[all …]