diff options
author | Fred Drake <fdrake@acm.org> | 2003-04-30 16:44:36 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-04-30 16:44:36 (GMT) |
commit | 90fc0b356f52d058c57a5f41407d2d9a36dae350 (patch) | |
tree | ba3774f587282f9c4b4e609c669fd1437328df21 /Doc | |
parent | b876bcc561dafe92280bb3fb7b30513c6ecb6c35 (diff) | |
download | cpython-90fc0b356f52d058c57a5f41407d2d9a36dae350.zip cpython-90fc0b356f52d058c57a5f41407d2d9a36dae350.tar.gz cpython-90fc0b356f52d058c57a5f41407d2d9a36dae350.tar.bz2 |
At the site of an indexed reference to print, point to the relevant
documentation. Closes SF bug #723136.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libstdtypes.tex | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index f9e6566..04cdbca 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -17,9 +17,13 @@ all objects can be compared, tested for truth value, and converted to a string (with the \code{`\textrm{\ldots}`} notation). The latter conversion is implicitly used when an object is written by the \keyword{print}\stindex{print} statement. +(Information on \ulink{\keyword{print} statement}{../ref/print.html} +and other language statements can be found in the +\citetitle[../ref/ref.html]{Python Reference Manual} and the +\citetitle[../tut/tut.html]{Python Tutorial}.) -\subsection{Truth Value Testing} \label{truth} +\subsection{Truth Value Testing\label{truth}} Any object can be tested for truth value, for use in an \keyword{if} or \keyword{while} condition or as operand of the Boolean operations below. |