summaryrefslogtreecommitdiffstats
path: root/Doc/ref/ref6.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/ref/ref6.tex')
-rw-r--r--Doc/ref/ref6.tex7
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/ref/ref6.tex b/Doc/ref/ref6.tex
index 1821485..ddeb30d 100644
--- a/Doc/ref/ref6.tex
+++ b/Doc/ref/ref6.tex
@@ -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}