Lines Matching defs:isoformat
146 _Py_IDENTIFIER(isoformat);
739 /* Parse the date components of the result of date.isoformat()
879 // Parse the time portion of a datetime.isoformat() string
3056 /* Return the new date from a string as generated by date.isoformat() */
3092 PyErr_Format(PyExc_ValueError, "Invalid isoformat string: %R", dtstr);
3236 /* str() calls the appropriate isoformat() method. */
3598 {"isoformat", (PyCFunction)date_isoformat, METH_NOARGS,
4383 if (!PyArg_ParseTupleAndKeywords(args, kw, "|s:isoformat", keywords, ×pec))
4680 PyErr_Format(PyExc_ValueError, "Invalid isoformat string: %R", tstr);
4731 {"isoformat", _PyCFunction_CAST(time_isoformat), METH_VARARGS | METH_KEYWORDS,
5516 PyErr_Format(PyExc_ValueError, "Invalid isoformat string: %R", dtstr);
5763 if (!PyArg_ParseTupleAndKeywords(args, kw, "|Cs:isoformat", keywords, &sep, ×pec))
6576 {"isoformat", _PyCFunction_CAST(datetime_isoformat), METH_VARARGS | METH_KEYWORDS,