summaryrefslogtreecommitdiffstats
path: root/Doc/library/sys.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-10-22 11:48:10 (GMT)
committerGeorg Brandl <georg@python.org>2009-10-22 11:48:10 (GMT)
commit6c14e587f59e72d69b99fdf766bbbcbf4af920fa (patch)
tree6cec7b8014032f1d8ae9a5574c9bfd2c14320b4a /Doc/library/sys.rst
parent3954d21cc5bdef2bed90c875fc80a620b28271d5 (diff)
downloadcpython-6c14e587f59e72d69b99fdf766bbbcbf4af920fa.zip
cpython-6c14e587f59e72d69b99fdf766bbbcbf4af920fa.tar.gz
cpython-6c14e587f59e72d69b99fdf766bbbcbf4af920fa.tar.bz2
Use "impl-detail" directive where applicable.
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r--Doc/library/sys.rst22
1 files changed, 12 insertions, 10 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index b491c78..8264a39 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -417,8 +417,10 @@ always available.
that is deeper than the call stack, :exc:`ValueError` is raised. The default
for *depth* is zero, returning the frame at the top of the call stack.
- This function should be used for internal and specialized purposes only. It
- is not guaranteed to exist in all implementations of Python.
+ .. impl-detail::
+
+ This function should be used for internal and specialized purposes only.
+ It is not guaranteed to exist in all implementations of Python.
.. function:: getprofile()
@@ -440,12 +442,12 @@ always available.
Get the trace function as set by :func:`settrace`.
- .. note::
+ .. impl-detail::
The :func:`gettrace` function is intended only for implementing debuggers,
- profilers, coverage tools and the like. Its behavior is part of the
- implementation platform, rather than part of the language definition,
- and thus may not be available in all Python implementations.
+ profilers, coverage tools and the like. Its behavior is part of the
+ implementation platform, rather than part of the language definition, and
+ thus may not be available in all Python implementations.
.. versionadded:: 2.6
@@ -830,12 +832,12 @@ always available.
For more information on code and frame objects, refer to :ref:`types`.
- .. note::
+ .. impl-detail::
The :func:`settrace` function is intended only for implementing debuggers,
- profilers, coverage tools and the like. Its behavior is part of the
- implementation platform, rather than part of the language definition, and thus
- may not be available in all Python implementations.
+ profilers, coverage tools and the like. Its behavior is part of the
+ implementation platform, rather than part of the language definition, and
+ thus may not be available in all Python implementations.
.. function:: settscdump(on_flag)