From: Brett Cannon Date: Sat, 26 Jun 2004 23:10:32 +0000 (+0000) Subject: Clarify sentence at end of Intermezzo section stating that PyMODINIT_FUNC will X-Git-Tag: v2.4a1~121 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=555a96475d81eb1d38eeb930578aa35dab857a46;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Doc/ext/extending.tex b/Doc/ext/extending.tex index c50714ea8854..57adc15b5c68 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}}