summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFredrik Lundh <fredrik@pythonware.com>2006-02-02 21:58:55 (GMT)
committerFredrik Lundh <fredrik@pythonware.com>2006-02-02 21:58:55 (GMT)
commit5a49fae1ab02f94fe0753a0f8da1bafa39a33f3c (patch)
tree22993681dddc9c741328afeb29d107228077f101
parent553489ab1db7990998aae3bffc0a1e20f5dc51af (diff)
downloadcpython-5a49fae1ab02f94fe0753a0f8da1bafa39a33f3c.zip
cpython-5a49fae1ab02f94fe0753a0f8da1bafa39a33f3c.tar.gz
cpython-5a49fae1ab02f94fe0753a0f8da1bafa39a33f3c.tar.bz2
SF patch #1421726
fixed typo in language reference
-rw-r--r--Doc/ref/ref6.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref6.tex b/Doc/ref/ref6.tex
index 3dee67f..d1d23ac 100644
--- a/Doc/ref/ref6.tex
+++ b/Doc/ref/ref6.tex
@@ -875,7 +875,7 @@ a code object. If it is a string, the string is parsed as a suite of
Python statements which is then executed (unless a syntax error
occurs). If it is an open file, the file is parsed until \EOF{} and
executed. If it is a code object, it is simply executed. In all
-cases, the code that's executed is expected to be be valid as file
+cases, the code that's executed is expected to be valid as file
input (see section~\ref{file-input}, ``File input''). Be aware that
the \keyword{return} and \keyword{yield} statements may not be used
outside of function definitions even within the context of code passed