diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-11-12 21:26:46 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-11-12 21:26:46 (GMT) |
commit | 3e8e9cc25d3ec1507a0e08028844205e92f488b7 (patch) | |
tree | 6a8c2889b7a9bc25f6ec0be217eae2ea94a9a5b7 /Doc/library/inspect.rst | |
parent | 727c2c5d658b3933e4f971089c04bcf73c8c3975 (diff) | |
download | cpython-3e8e9cc25d3ec1507a0e08028844205e92f488b7.zip cpython-3e8e9cc25d3ec1507a0e08028844205e92f488b7.tar.gz cpython-3e8e9cc25d3ec1507a0e08028844205e92f488b7.tar.bz2 |
getfullargspec() has other virtues, too
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 6918a25..3752bf1 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -394,7 +394,7 @@ Classes and functions .. deprecated:: 3.0 Use :func:`getfullargspec` instead, which provides information about - keyword-only arguments. + keyword-only arguments and annotations. .. function:: getfullargspec(func) |