summaryrefslogtreecommitdiffstats
path: root/Doc/howto/instrumentation.rst
diff options
context:
space:
mode:
authorAndrés Delfino <adelfino@gmail.com>2018-09-14 17:13:09 (GMT)
committerPetr Viktorin <encukou@gmail.com>2018-09-14 17:13:09 (GMT)
commit271818fe279df5ab292789f97c3a52c477bd8f13 (patch)
treed53219504a31b64f3f90917577cada08b7bff1cf /Doc/howto/instrumentation.rst
parentc9d66f0ed4f07b9d184d22abbfdd4c3c8e2702df (diff)
downloadcpython-271818fe279df5ab292789f97c3a52c477bd8f13.zip
cpython-271818fe279df5ab292789f97c3a52c477bd8f13.tar.gz
cpython-271818fe279df5ab292789f97c3a52c477bd8f13.tar.bz2
Fix "Python" casing in a few places (GH-9001)
Diffstat (limited to 'Doc/howto/instrumentation.rst')
-rw-r--r--Doc/howto/instrumentation.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/instrumentation.rst b/Doc/howto/instrumentation.rst
index b63c43c..50cde35 100644
--- a/Doc/howto/instrumentation.rst
+++ b/Doc/howto/instrumentation.rst
@@ -369,13 +369,13 @@ available:
.. c:function:: python.function.entry(str filename, str funcname, int lineno, frameptr)
This probe point indicates that execution of a Python function has begun.
- It is only triggered for pure-python (bytecode) functions.
+ It is only triggered for pure-Python (bytecode) functions.
.. c:function:: python.function.return(str filename, str funcname, int lineno, frameptr)
This probe point is the converse of :c:func:`python.function.return`, and
indicates that execution of a Python function has ended (either via
- ``return``, or via an exception). It is only triggered for pure-python
+ ``return``, or via an exception). It is only triggered for pure-Python
(bytecode) functions.