]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Minor markup nit.
authorFred Drake <fdrake@acm.org>
Fri, 2 Jul 1999 14:29:14 +0000 (14:29 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 2 Jul 1999 14:29:14 +0000 (14:29 +0000)
Doc/ext/ext.tex
Doc/lib/libstdtypes.tex

index 33d6492078b5edc3dc35e014958322814eac244c..04ffcbfe71d677a3b1d98f8fe582ba4d9b09827d 100644 (file)
@@ -694,7 +694,7 @@ second is the address of a C variable (of arbitrary type), converted
 to \ctype{void *}.  The \var{converter} function in turn is called as
 follows:
 
-\code{\var{status} = \var{converter}(\var{object}, \var{address});}
+\var{status}\code{ = }\var{converter}\code{(}\var{object}, \var{address}\code{);}
 
 where \var{object} is the Python object to be converted and
 \var{address} is the \ctype{void *} argument that was passed to
index f24da0c98e255d0afa6ca43815ba93c3182f2546..517cc8814ac9dac3ce049cc1ae77240fd2b8eb9e 100644 (file)
@@ -190,8 +190,8 @@ integer is smaller than long integer is smaller than floating point is
 smaller than complex.
 Comparisons between numbers of mixed type use the same rule.\footnote{
        As a consequence, the list \code{[1, 2]} is considered equal
-        to \code{[1.0, 2.0]}, and similar for tuples.}
-The functions \function{int()}, \function{long()}, \function{float()},
+        to \code{[1.0, 2.0]}, and similar for tuples.
+The functions \function{int()}, \function{long()}, \function{float()},
 and \function{complex()} can be used
 to coerce numbers to a specific type.
 \index{arithmetic}