Home | History | Annotate | Download | only in Python

Lines Matching refs:sourceline

309              PyObject *category, PyObject *sourceline)
344 if (sourceline) {
351 if (PyUnicode_READY(sourceline) < 1)
354 kind = PyUnicode_KIND(sourceline);
355 data = PyUnicode_DATA(sourceline);
356 len = PyUnicode_GET_LENGTH(sourceline);
363 truncated = PyUnicode_Substring(sourceline, i, len);
367 PyFile_WriteObject(sourceline, f_stderr, Py_PRINT_RAW);
383 PyObject *sourceline, PyObject *source)
394 show_warning(filename, lineno, text, category, sourceline);
436 PyObject *module, PyObject *registry, PyObject *sourceline,
546 lineno_obj, sourceline, source) < 0)