Lines Matching refs:sep
1457 * sign HH sep MM [sep SS [. UUUUUU]]
1462 format_utcoffset(char *buf, size_t buflen, const char *sep,
1497 hours, sep, minutes, sep, seconds, microseconds);
1502 sep, minutes, sep, seconds);
1505 PyOS_snprintf(buf, buflen, "%c%02d%s%02d", sign, hours, sep, minutes);
2638 const char *sep = "";
2645 sep = ", ";
2649 Py_SETREF(args, PyUnicode_FromFormat("%U%sseconds=%d", args, sep,
2654 sep = ", ";
2658 Py_SETREF(args, PyUnicode_FromFormat("%U%smicroseconds=%d", args, sep,
5748 int sep = 'T';
5750 static char *keywords[] = {"sep", "timespec", NULL};
5763 if (!PyArg_ParseTupleAndKeywords(args, kw, "|Cs:isoformat", keywords, &sep, ×pec))
5794 GET_DAY(self), (int)sep,
6577 PyDoc_STR("[sep] -> string in ISO 8601 format, "
6579 "sep is used to separate the year from the time, and "