diff options
author | Fred Drake <fdrake@acm.org> | 2001-04-13 15:55:25 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-04-13 15:55:25 +0000 |
commit | 7e176556673451497232f24181bc4f215f09df67 (patch) | |
tree | 862370d147f8bd75f06c8dcda67df571c938624f /Doc/ref | |
parent | c312f6e2f487d90bc9dc8bfe2d7684b9cfc057a0 (diff) | |
download | cpython-7e176556673451497232f24181bc4f215f09df67.tar.gz |
Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping.
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref6.tex | 2 |
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 |