From: slateny <46876382+slateny@users.noreply.github.com> Date: Wed, 2 Mar 2022 19:03:38 +0000 (-0800) Subject: bpo-45492: Corrected documentation for co_names in inspect library doc (GH-31456) X-Git-Tag: v3.11.0a6~43 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3257d49d236e5f3453fe9d2fd8338bcdfe9756b7;p=thirdparty%2FPython%2Fcpython.git bpo-45492: Corrected documentation for co_names in inspect library doc (GH-31456) --- diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 7a6dc9c0337d..8ee2c070cccf 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -191,8 +191,9 @@ attributes: | | | which this code object | | | | was defined | +-----------+-------------------+---------------------------+ -| | co_names | tuple of names of local | -| | | variables | +| | co_names | tuple of names other | +| | | than arguments and | +| | | function locals | +-----------+-------------------+---------------------------+ | | co_nlocals | number of local variables | +-----------+-------------------+---------------------------+