summaryrefslogtreecommitdiffstats
path: root/Doc/library/inspect.rst
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2021-07-07 13:20:49 (GMT)
committerGitHub <noreply@github.com>2021-07-07 13:20:49 (GMT)
commit8363c53369a582ff9ae4e797a80cdce12624a278 (patch)
treea51072b474d86c51c26942fcbdf5cf259bc33f71 /Doc/library/inspect.rst
parent2f180ce2cb6e6a7e3c517495e0f4873d6aaf5f2f (diff)
downloadcpython-8363c53369a582ff9ae4e797a80cdce12624a278.zip
cpython-8363c53369a582ff9ae4e797a80cdce12624a278.tar.gz
cpython-8363c53369a582ff9ae4e797a80cdce12624a278.tar.bz2
bpo-44530: Document the new CodeObject.co_qualname attribute (GH-27052)
Diffstat (limited to 'Doc/library/inspect.rst')
-rw-r--r--Doc/library/inspect.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst
index 1d7572e..ed95c72 100644
--- a/Doc/library/inspect.rst
+++ b/Doc/library/inspect.rst
@@ -187,6 +187,10 @@ attributes:
| | co_name | name with which this code |
| | | object was defined |
+-----------+-------------------+---------------------------+
+| | co_qualname | fully-qualified name with |
+| | | which this code object |
+| | | was defined |
++-----------+-------------------+---------------------------+
| | co_names | tuple of names of local |
| | | variables |
+-----------+-------------------+---------------------------+