Lines Matching defs:format
166 /* N format is inappropriate, because you do not know
3405 PySys_WriteStdout(format, ...)
3406 PySys_WriteStderr(format, ...)
3416 Both take a printf-style format string as their first argument followed
3417 by a variable length argument list determined by the format string.
3421 The format should limit the total size of the formatted output string to
3431 sys_write(PyObject *key, FILE *fp, const char *format, va_list va)
3441 written = PyOS_vsnprintf(buffer, sizeof(buffer), format, va);
3455 PySys_WriteStdout(const char *format, ...)
3459 va_start(va, format);
3460 sys_write(&_Py_ID(stdout), stdout, format, va);
3465 PySys_WriteStderr(const char *format, ...)
3469 va_start(va, format);
3470 sys_write(&_Py_ID(stderr), stderr, format, va);
3475 sys_format(PyObject *key, FILE *fp, const char *format, va_list va)
3484 message = PyUnicode_FromFormatV(format, va);
3498 PySys_FormatStdout(const char *format, ...)
3502 va_start(va, format);
3503 sys_format(&_Py_ID(stdout), stdout, format, va);
3508 PySys_FormatStderr(const char *format, ...)
3512 va_start(va, format);
3513 sys_format(&_Py_ID(stderr), stderr, format, va);