diff options
author | Fred Drake <fdrake@acm.org> | 2001-06-23 05:27:20 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-06-23 05:27:20 (GMT) |
commit | 2829f1cf99edb9f6f5f775d6b8ce8bd5b88c6ac9 (patch) | |
tree | 0217d96d78f7433a7f71da7bffe7c5901a33e1b5 /Doc/ref/ref8.tex | |
parent | 8c96369513ded66146f9cf19678029615e29bcb7 (diff) | |
download | cpython-2829f1cf99edb9f6f5f775d6b8ce8bd5b88c6ac9.zip cpython-2829f1cf99edb9f6f5f775d6b8ce8bd5b88c6ac9.tar.gz cpython-2829f1cf99edb9f6f5f775d6b8ce8bd5b88c6ac9.tar.bz2 |
Fix a very minor (but annoying when looking for things!) markup nit.
Diffstat (limited to 'Doc/ref/ref8.tex')
-rw-r--r-- | Doc/ref/ref8.tex | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/ref/ref8.tex b/Doc/ref/ref8.tex index cadbc5d..24d10b1 100644 --- a/Doc/ref/ref8.tex +++ b/Doc/ref/ref8.tex @@ -6,6 +6,7 @@ typed in interactively, from a module source file, etc. This chapter gives the syntax used in these cases. \index{interpreter} + \section{Complete Python programs\label{programs}} \index{program} @@ -43,6 +44,7 @@ program. \index{command line} \index{standard input} + \section{File input\label{file-input}} All input read from non-interactive files has the same form: @@ -63,6 +65,7 @@ This syntax is used in the following situations: \end{itemize} + \section{Interactive input\label{interactive}} Input in interactive mode is parsed using the following grammar: @@ -75,6 +78,7 @@ Note that a (top-level) compound statement must be followed by a blank line in interactive mode; this is needed to help the parser detect the end of the input. + \section{Expression input\label{expression-input}} \index{input} |