]> granicus.if.org Git - python/commitdiff
Fix spacing markup and other sundries.
authorRaymond Hettinger <python@rcn.com>
Mon, 8 Sep 2003 19:01:04 +0000 (19:01 +0000)
committerRaymond Hettinger <python@rcn.com>
Mon, 8 Sep 2003 19:01:04 +0000 (19:01 +0000)
Doc/ext/extending.tex

index 0f38e96f10f904e990785829ade1c85b21ebbd6d..bfd6b04c805a5bd925937cebf778cd48a4b7f8dd 100644 (file)
@@ -1,4 +1,4 @@
-\chapter{Extending Python with C or \Cpp \label{intro}}
+\chapter{Extending Python with \C{} or \Cpp{} \label{intro}}
 
 
 It is quite easy to add new built-in modules to Python, if you know
@@ -349,7 +349,7 @@ initspam(void)
 
 Note that PyMODINIT_FUNC declares the function as \code{void} return type, 
 declares any special linkage declarations required by the platform, and for 
-\Cpp declares the function as \code{extern "C"}.
+\Cpp{} declares the function as \code{extern "C"}.
 
 When the Python program imports module \module{spam} for the first
 time, \cfunction{initspam()} is called. (See below for comments about