]> granicus.if.org Git - python/commitdiff
#9237: document sys.call_tracing().
authorGeorg Brandl <georg@python.org>
Sun, 17 Oct 2010 11:06:14 +0000 (11:06 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 17 Oct 2010 11:06:14 +0000 (11:06 +0000)
Doc/library/sys.rst

index 6540311dd6f028896af94575791041393f5eadf6..23fdb09d39cea7cf68321fe33f4cc1ae92088dd0 100644 (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.