#9237: document sys.call_tracing().

This commit is contained in:
Georg Brandl 2010-10-17 11:06:14 +00:00
parent 12c695cea9
commit 8527126f85
1 changed files with 7 additions and 0 deletions

View File

@ -55,6 +55,13 @@ always available.
``modules.keys()`` only lists the imported modules.)
.. function:: call_tracing(func, args)
Call ``func(*args)``, while tracing is enabled. The tracing state is saved,
and restored afterwards. This is intended to be called from a debugger from
a checkpoint, to recursively debug some other code.
.. data:: copyright
A string containing the copyright pertaining to the Python interpreter.