This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: benjamin.peterson, georg.brandl, rocky
Priority: normal Keywords:

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:41adminsetgithub: 48603
2008-11-20 04:05:35benjamin.petersonsetstatus: open -> closed
resolution: accepted
messages: + msg76089
nosy: + benjamin.peterson
2008-11-19 15:34:26rockycreate