summaryrefslogtreecommitdiffstats
path: root/Doc/ext
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2005-02-13 22:56:41 (GMT)
committerBrett Cannon <bcannon@gmail.com>2005-02-13 22:56:41 (GMT)
commit150d61d37ee7f6b0103a40e59d5473fec9a5eddf (patch)
tree6da6e1c2178921d731e2198d759d26e24940c65d /Doc/ext
parent688a0ca97b9e78f40f8c2a97150406db712a3547 (diff)
downloadcpython-150d61d37ee7f6b0103a40e59d5473fec9a5eddf.zip
cpython-150d61d37ee7f6b0103a40e59d5473fec9a5eddf.tar.gz
cpython-150d61d37ee7f6b0103a40e59d5473fec9a5eddf.tar.bz2
Update refences to "Macintosh" to reflect the state of affairs for OS X and not
Mac OS 9. Backport of patch #1095802.
Diffstat (limited to 'Doc/ext')
-rw-r--r--Doc/ext/extending.tex3
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/ext/extending.tex b/Doc/ext/extending.tex
index 693af1d..bc2f9cb 100644
--- a/Doc/ext/extending.tex
+++ b/Doc/ext/extending.tex
@@ -374,7 +374,7 @@ called automatically unless there's an entry in the
\cdata{_PyImport_Inittab} table. The easiest way to handle this is to
statically initialize your statically-linked modules by directly
calling \cfunction{initspam()} after the call to
-\cfunction{Py_Initialize()} or \cfunction{PyMac_Initialize()}:
+\cfunction{Py_Initialize()}:
\begin{verbatim}
int
@@ -426,7 +426,6 @@ system uses; see the chapters about building extension modules
(chapter \ref{building}) and additional information that pertains only
to building on Windows (chapter \ref{building-on-windows}) for more
information about this.
-% XXX Add information about Mac OS
If you can't use dynamic loading, or if you want to make your module a
permanent part of the Python interpreter, you will have to change the