diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-05-04 10:14:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-04 10:14:16 (GMT) |
commit | c463796ba7f18079bf2554650bc9ac09bca49dca (patch) | |
tree | 833e2c5fff8e77b298e4d7a08a546016dcc63dc6 /Doc/c-api/intro.rst | |
parent | 693ef48df1891a6a30fca6c6db500c7cd08671df (diff) | |
download | cpython-c463796ba7f18079bf2554650bc9ac09bca49dca.zip cpython-c463796ba7f18079bf2554650bc9ac09bca49dca.tar.gz cpython-c463796ba7f18079bf2554650bc9ac09bca49dca.tar.bz2 |
[3.11] GH-97950: Use new-style index directive ('object') (GH-104158) (#104159)
GH-97950: Use new-style index directive ('object') (GH-104158)
* Uncomment object removal in pairindextypes
* Use new-style index directive ('object') - C API
* Use new-style index directive ('object') - Library
* Use new-style index directive ('object') - Reference
* Use new-style index directive ('object') - Tutorial
(cherry picked from commit 6ab463684b9d79880d98cd1f1406aa86af65985e)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Diffstat (limited to 'Doc/c-api/intro.rst')
-rw-r--r-- | Doc/c-api/intro.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst index bd37ed5..17710b0 100644 --- a/Doc/c-api/intro.rst +++ b/Doc/c-api/intro.rst @@ -261,7 +261,7 @@ complete listing. Objects, Types and Reference Counts =================================== -.. index:: object: type +.. index:: pair: object; type Most Python/C API functions have one or more arguments as well as a return value of type :c:expr:`PyObject*`. This type is a pointer to an opaque data type |