summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-11-20 21:25:31 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-11-20 21:25:31 (GMT)
commit050f4adcb485a11b33f4b54e60e58bf1ae9a6117 (patch)
treed58a8eb61d6925197c3f4ddd97343e4beaec929b
parent5ab9c3badba457900b590b693604e1817430a3ed (diff)
downloadcpython-050f4adcb485a11b33f4b54e60e58bf1ae9a6117.zip
cpython-050f4adcb485a11b33f4b54e60e58bf1ae9a6117.tar.gz
cpython-050f4adcb485a11b33f4b54e60e58bf1ae9a6117.tar.bz2
fix indentation and a sphinx warning
-rw-r--r--Doc/library/sys.rst9
1 files changed, 4 insertions, 5 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index 618f4e6..fa7b7f0 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -712,8 +712,7 @@ always available.
single: debugger
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
- chapter on the Python debugger. The function is thread-specific; for a
+ source code debugger in Python. The function is thread-specific; for a
debugger to support multiple threads, it must be registered using
:func:`settrace` for each thread being debugged.
@@ -762,10 +761,10 @@ always available.
``'c_exception'``
A C function has thrown an exception. *arg* is ``None``.
- Note that as an exception is propagated down the chain of callers, an
- ``'exception'`` event is generated at each level.
+ Note that as an exception is propagated down the chain of callers, an
+ ``'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::