diff options
author | Fred Drake <fdrake@acm.org> | 2001-04-13 15:55:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-04-13 15:55:25 (GMT) |
commit | 62effc112793e7176acf9a9e7a852b104e2e1606 (patch) | |
tree | 4deda64bb7474b94338a2fc9c8ef109cbf447cd3 | |
parent | fb8ffe6b5e2c05914bef841a3a06048b54504d85 (diff) | |
download | cpython-62effc112793e7176acf9a9e7a852b104e2e1606.zip cpython-62effc112793e7176acf9a9e7a852b104e2e1606.tar.gz cpython-62effc112793e7176acf9a9e7a852b104e2e1606.tar.bz2 |
Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping.
-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 7212071..f90317f 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 |