Home | History | Annotate | Download | only in Modules

Lines Matching refs:tup

395     PyObject *tup = NULL;

404 if (!PyArg_ParseTuple(args, "s|O:strftime", &fmt, &tup))
407 if (tup == NULL) {
410 } else if (!gettmarg(tup, &buf))
564 PyObject *tup = NULL;
567 if (!PyArg_UnpackTuple(args, "asctime", 0, 1, &tup))
569 if (tup == NULL) {
572 } else if (!gettmarg(tup, &buf))
629 time_mktime(PyObject *self, PyObject *tup)
633 if (!gettmarg(tup, &buf))