diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2018-06-14 21:46:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-14 21:46:35 (GMT) |
commit | 9e7c92193cc98fd3c2d4751c87851460a33b9118 (patch) | |
tree | 0bea62d9067d000f453b304e36d21fd950173810 /Doc/extending | |
parent | d22fc0bc7de7882da204abe50884bbde2da4f9e7 (diff) | |
download | cpython-9e7c92193cc98fd3c2d4751c87851460a33b9118.zip cpython-9e7c92193cc98fd3c2d4751c87851460a33b9118.tar.gz cpython-9e7c92193cc98fd3c2d4751c87851460a33b9118.tar.bz2 |
bpo-17045: Improve C-API doc for PyTypeObject. (gh-7413)
The existing doc had a number of info gaps and was a little hard to use. This patch provides several quick-reference tables as well as examples.
Diffstat (limited to 'Doc/extending')
-rw-r--r-- | Doc/extending/newtypes.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/extending/newtypes.rst b/Doc/extending/newtypes.rst index d0d2ec1..8b9549d 100644 --- a/Doc/extending/newtypes.rst +++ b/Doc/extending/newtypes.rst @@ -1,5 +1,7 @@ .. highlightlang:: c +.. _new-types-topics: + ***************************************** Defining Extension Types: Assorted Topics ***************************************** |