Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4e76555

Browse files
committed
Fix broken reference, minor clarification.
1 parent 742dc77 commit 4e76555

1 file changed

Lines changed: 10 additions & 8 deletions

File tree

Doc/ext/extending.tex

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -414,18 +414,20 @@ \section{Compilation and Linkage
414414

415415
There are two more things to do before you can use your new extension:
416416
compiling and linking it with the Python system. If you use dynamic
417-
loading, the details depend on the style of dynamic loading your
418-
system uses; see the chapters about building extension modules on
419-
\UNIX{} (chapter \ref{building-on-unix}) and Windows (chapter
420-
\ref{building-on-windows}) for more information about this.
421-
% XXX Add information about MacOS
417+
loading, the details may depend on the style of dynamic loading your
418+
system uses; see the chapters about building extension modules
419+
(chapter \ref{building}) and additional information that pertains only
420+
to building on Windows (chapter \ref{building-on-windows}) for more
421+
information about this.
422+
% XXX Add information about Mac OS
422423

423424
If you can't use dynamic loading, or if you want to make your module a
424425
permanent part of the Python interpreter, you will have to change the
425426
configuration setup and rebuild the interpreter. Luckily, this is
426-
very simple: just place your file (\file{spammodule.c} for example) in
427-
the \file{Modules/} directory of an unpacked source distribution, add
428-
a line to the file \file{Modules/Setup.local} describing your file:
427+
very simple on \UNIX: just place your file (\file{spammodule.c} for
428+
example) in the \file{Modules/} directory of an unpacked source
429+
distribution, add a line to the file \file{Modules/Setup.local}
430+
describing your file:
429431

430432
\begin{verbatim}
431433
spam spammodule.o

0 commit comments

Comments
 (0)