From: Fred Drake Date: Fri, 13 Apr 2001 15:55:25 +0000 (+0000) Subject: Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping. X-Git-Tag: v2.1c1~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=62effc112793e7176acf9a9e7a852b104e2e1606;p=thirdparty%2FPython%2Fcpython.git Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping. --- diff --git a/Doc/ref/ref6.tex b/Doc/ref/ref6.tex index 7212071338d2..f90317f14024 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