Issue 4353: Move description what a trace should should return to settrace from pdb section into sys.settrace section (original) (raw)

Issue4353

classification

Title: Move description what a trace should should return to settrace from pdb section into sys.settrace section
Type: crash Stage:
Components: Documentation Versions: Python 2.5.3, Python 2.4, Python 2.3, Python 2.2.3, Python 2.6, Python 2.2.2, Python 2.5, Python 2.2.1, Python 2.2, Python 2.1.2, Python 2.1.1

Created on 2008-11-19 15:34 by rocky, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg76051 - (view) Author: rocky bernstein (rocky) Date: 2008-11-19 15:34
This sentence: The local trace function should return a reference to itself (or to another function for further tracing in that scope), or None to turn off tracing in that scope. which appears under "How it [the debugger] Works" (http://docs.python.org http://docs.python.org/library/pdb.html#debugger-hooks) should appear under the description of (sys.settrace http://docs.python.org/library/sys.html) since this really part of the settrace interface and is not limited to the python debugger, pdb, or debuggers in general.
msg76089 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-11-20 04:05
Thanks for the suggestion! Done in r67205.
History
Date User Action Args
2022-04-11 14:56:41 admin set github: 48603
2008-11-20 04:05:35 benjamin.peterson set status: open -> closedresolution: acceptedmessages: + nosy: + benjamin.peterson
2008-11-19 15:34:26 rocky create