Lines Matching +full:detect +full:- +full:newline
2 .. _top-level:
5 Top-level components
31 built-in and standard modules are available, but none have been initialized,
32 except for :mod:`sys` (various system services), :mod:`__builtin__` (built-in
55 in three forms: with the :option:`-c` *string* command line option, as a file
61 .. _file-input:
66 All input read from non-interactive files has the same form:
69 file_input: (NEWLINE | `statement`)*
88 interactive_input: [`stmt_list`] NEWLINE | `compound_stmt` NEWLINE
90 Note that a (top-level) compound statement must be followed by a blank line in
91 interactive mode; this is needed to help the parser detect the end of the input.
94 .. _expression-input:
107 eval_input: `expression_list` NEWLINE*
114 input_input: `expression_list` NEWLINE
123 Note: to read 'raw' input line without interpretation, you can use the built-in