fix indentation and a sphinx warning

This commit is contained in:
Benjamin Peterson 2008-11-20 21:25:31 +00:00
parent 5ab9c3badb
commit 050f4adcb4
1 changed files with 4 additions and 5 deletions

View File

@ -712,8 +712,7 @@ always available.
single: debugger single: debugger
Set the system's trace function, which allows you to implement a Python Set the system's trace function, which allows you to implement a Python
source code debugger in Python. See section :ref:`debugger-hooks` in the source code debugger in Python. The function is thread-specific; for a
chapter on the Python debugger. The function is thread-specific; for a
debugger to support multiple threads, it must be registered using debugger to support multiple threads, it must be registered using
:func:`settrace` for each thread being debugged. :func:`settrace` for each thread being debugged.
@ -762,10 +761,10 @@ always available.
``'c_exception'`` ``'c_exception'``
A C function has thrown an exception. *arg* is ``None``. A C function has thrown an exception. *arg* is ``None``.
Note that as an exception is propagated down the chain of callers, an Note that as an exception is propagated down the chain of callers, an
``'exception'`` event is generated at each level. ``'exception'`` event is generated at each level.
For more information on code and frame objects, refer to :ref:`types`. For more information on code and frame objects, refer to :ref:`types`.
.. note:: .. note::