]> granicus.if.org Git - python/commitdiff
- markup fix
authorGeorge Yoshida <dynkin@gmail.com>
Sat, 20 May 2006 15:36:19 +0000 (15:36 +0000)
committerGeorge Yoshida <dynkin@gmail.com>
Sat, 20 May 2006 15:36:19 +0000 (15:36 +0000)
- add clarifying words

Doc/ref/ref2.tex
Doc/ref/ref6.tex

index 34e8a9e1ab44687d2645ec28cdcf2cdf5e0d2464..5971dab4bcdac04efb61f9a020e293b5fafe549a 100644 (file)
@@ -652,7 +652,7 @@ Some examples of floating point literals:
 \end{verbatim}
 
 Note that numeric literals do not include a sign; a phrase like
-\code{-1} is actually an expression composed of the operator
+\code{-1} is actually an expression composed of the unary operator
 \code{-} and the literal \code{1}.
 
 
index e49f12c788c63a734c98f4bdb684fb7cb6134295..04db0131ea62846106cd241a0d201ce13596a265 100644 (file)
@@ -809,13 +809,14 @@ import __future__ [as name]
 That is not a future statement; it's an ordinary import statement with
 no special semantics or syntax restrictions.
 
-Code compiled by an exec statement or calls to the builtin functions
+Code compiled by an \keyword{exec} statement or calls to the builtin functions
 \function{compile()} and \function{execfile()} that occur in a module
 \module{M} containing a future statement will, by default, use the new 
 syntax or semantics associated with the future statement.  This can,
 starting with Python 2.2 be controlled by optional arguments to
-\function{compile()} --- see the documentation of that function in the 
-library reference for details.
+\function{compile()} --- see the documentation of that function in the
+\citetitle[../lib/built-in-funcs.html]{Python Library Reference} for
+details.
 
 A future statement typed at an interactive interpreter prompt will
 take effect for the rest of the interpreter session.  If an