diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2014-01-30 05:22:57 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-01-30 05:22:57 (GMT) |
commit | d71e52fc33ea6e36a5d0670a65d9973cb2eace13 (patch) | |
tree | 9888cf60d30b78fdd03cc79b82740b709e732254 /Doc/library/inspect.rst | |
parent | 783568980a6494070f75de5dc8e80631b02d79af (diff) | |
download | cpython-d71e52fc33ea6e36a5d0670a65d9973cb2eace13.zip cpython-d71e52fc33ea6e36a5d0670a65d9973cb2eace13.tar.gz cpython-d71e52fc33ea6e36a5d0670a65d9973cb2eace13.tar.bz2 |
inspect.doc: Soften the note about inspect.signature not supporting
all builtin functions.
Diffstat (limited to 'Doc/library/inspect.rst')
-rw-r--r-- | Doc/library/inspect.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 492762e..ccb2bd7 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) |