From: Yury Selivanov Date: Thu, 30 Jan 2014 05:22:57 +0000 (-0500) Subject: inspect.doc: Soften the note about inspect.signature not supporting X-Git-Tag: v3.4.0rc1~175 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d71e52fc33ea6e36a5d0670a65d9973cb2eace13;p=python inspect.doc: Soften the note about inspect.signature not supporting all builtin functions. --- diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 492762e78d..ccb2bd7c22 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -440,8 +440,8 @@ function. .. note:: Some callables may not be introspectable in certain implementations of - Python. For example, in CPython, built-in functions defined in C provide - no metadata about their arguments. + Python. For example, in CPython, some built-in functions defined in + C provide no metadata about their arguments. .. class:: Signature(parameters=None, \*, return_annotation=Signature.empty)