summaryrefslogtreecommitdiff
path: root/Doc/library/inspect.rst
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-09-14 12:15:10 -0700
committerPetr Viktorin <encukou@gmail.com>2018-09-14 12:15:10 -0700
commitb2ecb8b486d85d11ee7b523dfd2c76b2820bbe83 (patch)
treeecfef0cb107be36f3e330aadbfe245e40d77d072 /Doc/library/inspect.rst
parentca2fa2841f8e3ce5213a0e8c0abc1d0fdc7d386b (diff)
downloadcpython-git-b2ecb8b486d85d11ee7b523dfd2c76b2820bbe83.tar.gz
Fix "Python" casing in a few places (GH-9001) (GH-9313)
(cherry picked from commit 271818fe279df5ab292789f97c3a52c477bd8f13) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
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 bc4316faba..300b3e76b2 100644
--- a/Doc/library/inspect.rst
+++ b/Doc/library/inspect.rst
@@ -556,7 +556,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