diff options
author | Brett Cannon <brett@python.org> | 2016-06-09 23:59:13 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-06-09 23:59:13 (GMT) |
commit | a0053bebc2fd67f9f8223181980baae7bb0ccb62 (patch) | |
tree | 302599b574011c2e0dd1a78c27cf829dc27c8718 /Doc/c-api | |
parent | 746102bd238f414ba65b336d600eade06b99c440 (diff) | |
parent | 5848ac2df0169bb4a4910a3690df560cd2e77447 (diff) | |
download | cpython-a0053bebc2fd67f9f8223181980baae7bb0ccb62.zip cpython-a0053bebc2fd67f9f8223181980baae7bb0ccb62.tar.gz cpython-a0053bebc2fd67f9f8223181980baae7bb0ccb62.tar.bz2 |
Merge
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/code.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/c-api/code.rst b/Doc/c-api/code.rst index 9c93563..10d89f2 100644 --- a/Doc/c-api/code.rst +++ b/Doc/c-api/code.rst @@ -2,15 +2,13 @@ .. _codeobjects: +.. index:: object; code, code object + Code Objects ------------ .. sectionauthor:: Jeffrey Yasskin <jyasskin@gmail.com> - -.. index:: - object: code - Code objects are a low-level detail of the CPython implementation. Each one represents a chunk of executable code that hasn't yet been bound into a function. |