diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tut/tut.tex | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 543c55e..86014a8 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -1286,9 +1286,8 @@ This example, as usual, demonstrates some new Python features: \item The \keyword{return} statement returns with a value from a function. -\keyword{return} without an expression argument is used to return from -the middle of a procedure (falling off the end also returns from a -procedure), in which case the \code{None} value is returned. +\keyword{return} without an expression argument returns \code{None}. +Falling off the end of a procedure also returns \code{None}. \item The statement \code{result.append(b)} calls a \emph{method} of the list |