Lines Matching defs:margin
402 /* Writes indent spaces, followed by the margin if it is not `\0`.
406 _Py_WriteIndentedMargin(int indent, const char *margin, PyObject *f)
411 if (margin) {
412 if (PyFile_WriteString(margin, f) < 0) {
421 int margin_indent, const char *margin,
552 if (_Py_WriteIndentedMargin(margin_indent, margin, f) < 0) {
762 PyFrameObject *frame, PyObject *name, int margin_indent, const char *margin)
768 if (_Py_WriteIndentedMargin(margin_indent, margin, f) < 0) {
790 margin_indent, margin, &truncation, &source_line);
887 if (_Py_WriteIndentedMargin(margin_indent, margin, f) < 0) {
925 int indent, const char *margin)
961 tb->tb_frame, code->co_name, indent, margin) < 0) {
986 _PyTraceBack_Print_Indented(PyObject *v, int indent, const char *margin,
1018 if (tb_printinternal((PyTracebackObject *)v, f, limit, indent, margin) < 0) {
1029 const char *margin = NULL;
1033 return _PyTraceBack_Print_Indented(v, indent, margin, header_margin, header, f);