diff options
Diffstat (limited to 'Doc/library/inspect.rst')
-rw-r--r-- | Doc/library/inspect.rst | 2 |
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 |