summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-04-13 15:55:25 +0000
committerFred Drake <fdrake@acm.org>2001-04-13 15:55:25 +0000
commit62effc112793e7176acf9a9e7a852b104e2e1606 (patch)
tree4deda64bb7474b94338a2fc9c8ef109cbf447cd3
parentfb8ffe6b5e2c05914bef841a3a06048b54504d85 (diff)
downloadcpython-git-62effc112793e7176acf9a9e7a852b104e2e1606.tar.gz
Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping.
-rw-r--r--Doc/ref/ref6.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref6.tex b/Doc/ref/ref6.tex
index 7212071338..f90317f140 100644
--- a/Doc/ref/ref6.tex
+++ b/Doc/ref/ref6.tex
@@ -378,7 +378,7 @@ exception is raised.
print_stmt: "print" ">>" expression [ ("," expression)+ [","] ]
\end{verbatim}
-In this form, the first expression after the \keyword{>>} must
+In this form, the first expression after the \code{>}\code{>} must
evaluate to a ``file-like'' object, specifically an object that has a
\method{write()} method as described above. With this extended form,
the subsequent expressions are printed to this file object. If the