summaryrefslogtreecommitdiffstats
path: root/Doc/library/inspect.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/library/inspect.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/library/inspect.rst')
-rw-r--r--Doc/library/inspect.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst
index e33876b..523a5f3 100644
--- a/Doc/library/inspect.rst
+++ b/Doc/library/inspect.rst
@@ -557,7 +557,7 @@ function.
>>> sig.parameters['b'].annotation
<class 'int'>
- Accepts a wide range of python callables, from plain functions and classes to
+ Accepts a wide range of Python callables, from plain functions and classes to
:func:`functools.partial` objects.
Raises :exc:`ValueError` if no signature can be provided, and