summaryrefslogtreecommitdiffstats
path: root/Doc/ext
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2004-06-26 23:10:32 (GMT)
committerBrett Cannon <bcannon@gmail.com>2004-06-26 23:10:32 (GMT)
commit555a96475d81eb1d38eeb930578aa35dab857a46 (patch)
tree6f88494db963fac872bc71af6111deb11c639545 /Doc/ext
parent852f79993f8d04f00f54a94e7275550a72454f5f (diff)
downloadcpython-555a96475d81eb1d38eeb930578aa35dab857a46.zip
cpython-555a96475d81eb1d38eeb930578aa35dab857a46.tar.gz
cpython-555a96475d81eb1d38eeb930578aa35dab857a46.tar.bz2
Clarify sentence at end of Intermezzo section stating that PyMODINIT_FUNC will
be discussed later by saying it is the function return type of the sample code to make spotting it easier.
Diffstat (limited to 'Doc/ext')
-rw-r--r--Doc/ext/extending.tex3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/ext/extending.tex b/Doc/ext/extending.tex
index c50714e..57adc15 100644
--- a/Doc/ext/extending.tex
+++ b/Doc/ext/extending.tex
@@ -243,7 +243,8 @@ discarded, causing \cdata{SpamError} to become a dangling pointer.
Should it become a dangling pointer, C code which raises the exception
could cause a core dump or other unintended side effects.
-We discuss the use of PyMODINIT_FUNC later in this sample.
+We discuss the use of PyMODINIT_FUNC as a function return type later in this
+sample.
\section{Back to the Example
\label{backToExample}}