diff options
author | Damien <damien.p.george@gmail.com> | 2013-12-12 15:24:38 +0000 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-12-12 15:24:38 +0000 |
commit | e388f1034e98f5066954c2a01477c199e2c76a42 (patch) | |
tree | a80801816f64c33b77f9c8a53b9eace1050da2b8 /py/grammar.h | |
parent | 02f8941bf6992a3100216f192a3a37c56fce102f (diff) | |
download | micropython-e388f1034e98f5066954c2a01477c199e2c76a42.tar.gz micropython-e388f1034e98f5066954c2a01477c199e2c76a42.zip |
py: fix bug with doc string not recognised after first newline of file.
Diffstat (limited to 'py/grammar.h')
-rw-r--r-- | py/grammar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/grammar.h b/py/grammar.h index ba3c9cc0c7..b1faab79e1 100644 --- a/py/grammar.h +++ b/py/grammar.h @@ -6,7 +6,7 @@ // # single_input is a single interactive statement; // # file_input is a module or sequence of commands read from an input file; // # eval_input is the input for the eval() functions. -// # NB: compound_stmt in single_input is followed by extra NEWLINE! --> not in Micropython +// # NB: compound_stmt in single_input is followed by extra NEWLINE! --> not in Micro Python // single_input: NEWLINE | simple_stmt | compound_stmt // file_input: (NEWLINE | stmt)* ENDMARKER // eval_input: testlist NEWLINE* ENDMARKER |