Lines Matching refs:tsargs
2586 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()
2640 (PyObject *)PyDateTimeAPI->DateTimeType, tsargs, NULL in get_datetime_fromtimestamp()
2644 Py_DECREF(tsargs); in get_datetime_fromtimestamp()