[issue9237] Add sys.call_tracing to on-line sys module documentation

2010-10-17 Thread Georg Brandl
Georg Brandl added the comment: Documented in r85636. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue9237] Add sys.call_tracing to on-line sys module documentation

2010-07-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I verified that in 3.1, sys.call_tracing exists but is undocumented. I also noticed that the sys doc entries are *almost* in alphabetical order. Out of place: subversion, dont_write_bytecode, api_version Reversed pairs (abbreviated) copyright clearxxx dllxxx

[issue9237] Add sys.call_tracing to on-line sys module documentation

2010-07-12 Thread rocky bernstein
New submission from rocky bernstein : sys.call_tracing doesn't appear in Python documents and I think it should. For a start, one could use the docstring from sysmodule.c: call_tracing(func, args) -> object Call func(*args), while tracing is enabled. The tracing state is saved, and restore