summaryrefslogtreecommitdiffstats
path: root/Doc/ref/ref8.tex
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-07-24 18:56:17 (GMT)
committerGuido van Rossum <guido@python.org>1998-07-24 18:56:17 (GMT)
commitd540509682717e1a10baec2d7c678fe89b146732 (patch)
tree6fa4fc94d7bfcba56bdf4c587a8ae613e8edccb2 /Doc/ref/ref8.tex
parent5399d68c4bf42085e0db2290e5bddee2e0bf2a3c (diff)
downloadcpython-d540509682717e1a10baec2d7c678fe89b146732.zip
cpython-d540509682717e1a10baec2d7c678fe89b146732.tar.gz
cpython-d540509682717e1a10baec2d7c678fe89b146732.tar.bz2
Changes copied from the FrameMaker version. Hardly anything (but then
this is the shortest chapter.) Hurray, I'm done with this!
Diffstat (limited to 'Doc/ref/ref8.tex')
-rw-r--r--Doc/ref/ref8.tex11
1 files changed, 5 insertions, 6 deletions
diff --git a/Doc/ref/ref8.tex b/Doc/ref/ref8.tex
index 25789a0..fe83594 100644
--- a/Doc/ref/ref8.tex
+++ b/Doc/ref/ref8.tex
@@ -16,7 +16,7 @@ initialized environment: all built-in and standard modules are
available, but none have been initialized, except for \module{sys}
(various system services), \module{__builtin__} (built-in functions,
exceptions and \code{None}) and \module{__main__}. The latter is used
-to provide the local and global name space for execution of the
+to provide the local and global namespace for execution of the
complete program.
\refbimodindex{sys}
\refbimodindex{__main__}
@@ -28,8 +28,8 @@ described in the next section.
The interpreter may also be invoked in interactive mode; in this case,
it does not read and execute a complete program but reads and executes
one statement (possibly compound) at a time. The initial environment
-is identical to that of a complete program; each statement is executed
-in the name space of \module{__main__}.
+is identical to that of a coplete program; each statement is executed
+in the namespace of \module{__main__}.
\index{interactive mode}
\refbimodindex{__main__}
@@ -80,19 +80,18 @@ end of the input.
There are two forms of expression input. Both ignore leading
whitespace.
-
The string argument to \function{eval()} must have the following form:
\bifuncindex{eval}
\begin{verbatim}
-eval_input: condition_list NEWLINE*
+eval_input: expression_list NEWLINE*
\end{verbatim}
The input line read by \function{input()} must have the following form:
\bifuncindex{input}
\begin{verbatim}
-input_input: condition_list NEWLINE
+input_input: expression_list NEWLINE
\end{verbatim}
Note: to read `raw' input line without interpretation, you can use the