Document "print >> None"

This commit is contained in:
Barry Warsaw 2000-08-29 04:57:34 +00:00
parent 9182b45a5a
commit 33f785fc1e

View file

@ -338,9 +338,10 @@ print_stmt: '>>' expression [ (',' expression)+ [','] ] )
In this form, the first expression after the \keyword{>>} must
evaluate to a ``file-like'' object, specifically an object that has a
\method{write()} method as described above. With the extended form,
the subsequent expressions are printed to this file-like object
instead of \code{sys.stdout}.
\method{write()} method as described above. With this extended form,
the subsequent expressions are printed to this file object. If the
first expression evaluates to \code{None}, then \code{sys.stdout} is
used as the file for output.
\section{The \keyword{return} statement \label{return}}
\stindex{return}