Searched refs:tracebacks (Results 1 – 25 of 42) sorted by relevance
12
/third_party/python/Doc/library/ |
D | faulthandler.rst | 11 This module contains functions to dump Python tracebacks explicitly, on a fault, 26 tracebacks: 37 tracebacks, applications must be run in the terminal. A log file can 40 The module is implemented in C, so tracebacks can be dumped on a crash or when 52 Dump the tracebacks of all threads into *file*. If *all_threads* is 67 produce tracebacks for every running thread. Otherwise, dump only the current 93 Dumping the tracebacks after a timeout 98 Dump the tracebacks of all threads, after a timeout of *timeout* seconds, or 100 :c:func:`_exit` with status=1 after dumping the tracebacks. (Note
|
D | compileall.rst | 50 appear in compilation time tracebacks, and is also compiled in to the 51 byte-code file, where it will be used in tracebacks and other messages in 161 for use in compilation time tracebacks, and is also compiled in to the 162 byte-code file, where it will be used in tracebacks and other messages in 241 for use in compilation time tracebacks, and is also compiled in to the 242 byte-code file, where it will be used in tracebacks and other messages in
|
D | cgitb.rst | 14 single: CGI; tracebacks 16 single: tracebacks; in CGI scripts
|
D | tracemalloc.rst | 112 module has cached ``940 KiB`` of Python source code to format tracebacks, all 369 allocators. Collected tracebacks of traces will be limited to *nframe* 461 * ``Filter(False, "<unknown>")`` excludes empty tracebacks 720 When a snapshot is taken, tracebacks of traces are limited to
|
D | sqlite3.rst | 312 By default you will not get any tracebacks in user-defined functions, 315 get tracebacks from callbacks on ``sys.stderr``. Use :const:`False` to 508 tracebacks from exceptions raised in the trace callback.
|
D | types.rst | 326 available attributes and operations, and guidance on creating tracebacks
|
D | doctest.rst | 349 * Output to stdout is captured, but not output to stderr (exception tracebacks 404 example: just paste in the traceback. [#]_ Since tracebacks contain details 455 Note that tracebacks are treated very specially. In particular, in the 474 course this does the right thing for genuine tracebacks.
|
D | unittest.rst | 240 Show local variables in tracebacks. 1958 holding formatted tracebacks. Each tuple represents a test which raised an 1964 holding formatted tracebacks. Each tuple represents a test where a failure 1977 holding formatted tracebacks. Each tuple represents an expected failure 2011 If set to true then local variables will be shown in tracebacks.
|
D | cgi.rst | 460 you can easily send tracebacks to the web browser using the :mod:`cgitb` module.
|
D | wsgiref.rst | 659 The maximum number of frames to include in tracebacks output by the default
|
D | logging.config.rst | 262 might present exception tracebacks in an expanded or condensed
|
D | idle.rst | 826 For SyntaxError tracebacks, the normal '^' marking where the error was
|
/third_party/python/Lib/ |
D | tracemalloc.py | 485 tracebacks = {} 490 traceback = tracebacks[trace_traceback] 499 tracebacks[trace_traceback] = traceback 512 traceback = tracebacks[frame] 519 tracebacks[frame] = traceback
|
/third_party/python/Modules/ |
D | _tracemalloc.c | 1186 _Py_hashtable_t *tracebacks; member 1281 get_traces->tracebacks); in tracemalloc_get_traces_fill() 1341 get_traces.tracebacks = NULL; in _tracemalloc__get_traces_impl() 1351 get_traces.tracebacks = hashtable_new(_Py_hashtable_hash_ptr, in _tracemalloc__get_traces_impl() 1354 if (get_traces.tracebacks == NULL) { in _tracemalloc__get_traces_impl() 1401 if (get_traces.tracebacks != NULL) { in _tracemalloc__get_traces_impl() 1402 _Py_hashtable_destroy(get_traces.tracebacks); in _tracemalloc__get_traces_impl()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.4rc1.rst | 20 Fixed several issues in printing tracebacks (PyTraceBack_Print()). 21 Setting sys.tracebacklimit to 0 or less now suppresses printing tracebacks. 535 tracebacks when either the current exception or an exception in its 938 Improve tk event exception tracebacks in IDLE. When tk event handling is 940 context is no longer added to tk event exception tracebacks. The traceback
|
D | 3.7.0a3.rst | 98 Fixed several issues in printing tracebacks (PyTraceBack_Print()). 99 Setting sys.tracebacklimit to 0 or less now suppresses printing tracebacks. 1023 tracebacks when either the current exception or an exception in its 1456 Improve tk event exception tracebacks in IDLE. When tk event handling is 1458 context is no longer added to tk event exception tracebacks. The traceback
|
D | 3.5.0a2.rst | 135 Make it possible to show local variables in tracebacks for both the
|
D | 3.6.0a4.rst | 17 Large sections of repeated lines in tracebacks are now abbreviated as
|
D | 3.6.2rc1.rst | 484 Avoid KeyboardInterrupt tracebacks in forkserver helper process when Ctrl-C
|
D | 3.5.4rc1.rst | 550 Avoid KeyboardInterrupt tracebacks in forkserver helper process when Ctrl-C
|
/third_party/python/Objects/ |
D | lnotab_notes.txt | 149 The above is sufficient to reconstruct line numbers for tracebacks, but not for
|
/third_party/python/Lib/idlelib/ |
D | HISTORY.txt | 72 - When running programs with ExecBinding, tracebacks will be clipped to
|
D | NEWS.txt | 503 bpo-32207: Improve tk event exception tracebacks in IDLE. 506 to tk event exception tracebacks. The traceback is now the same
|
/third_party/python/Doc/c-api/ |
D | veryhigh.rst | 251 *filename* is used to construct the code object and may appear in tracebacks or
|
/third_party/jinja2/ |
D | CHANGES.rst | 214 - Fix a hang when displaying tracebacks on Python 32-bit. 419 - Resolved a bug where getting debug locals for tracebacks could
|
12