diff options
author | Brett Cannon <bcannon@gmail.com> | 2005-02-13 22:50:04 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2005-02-13 22:50:04 +0000 |
commit | bb879ae272e9cddeac4a201c3e80d3c434b669b5 (patch) | |
tree | 1d17241de9eac9f0fe416fd4f98c2def66262044 /Doc/ext/extending.tex | |
parent | e9a6cd1f1f53000a4f14b4133e2273874e687ad3 (diff) | |
download | cpython-bb879ae272e9cddeac4a201c3e80d3c434b669b5.tar.gz |
Update references specifying "Macintosh" to mean OS X semantics and not Mac OS
9.
Applies patch #1095802. Thanks Jack Jansen.
Diffstat (limited to 'Doc/ext/extending.tex')
-rw-r--r-- | Doc/ext/extending.tex | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/ext/extending.tex b/Doc/ext/extending.tex index 693af1d0cf..bc2f9cb8fc 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 |