Manually patched a few things that didn't get merged in, but should.

This commit is contained in:
Guido van Rossum 2007-08-17 00:24:54 +00:00
parent af554a0e17
commit da27fd2673
16 changed files with 73 additions and 31 deletions

View file

@ -46,11 +46,13 @@ To do just the former:
(``'single'``, the default) or as an expression (``'eval'``). Any other value
will cause :exc:`ValueError` to be raised.
**Caveat:** It is possible (but not likely) that the parser stops parsing with a
successful outcome before reaching the end of the source; in this case, trailing
symbols may be ignored instead of causing an error. For example, a backslash
followed by two newlines may be followed by arbitrary garbage. This will be
fixed once the API for the parser is better.
.. warning::
It is possible (but not likely) that the parser stops parsing with a
successful outcome before reaching the end of the source; in this case,
trailing symbols may be ignored instead of causing an error. For example,
a backslash followed by two newlines may be followed by arbitrary garbage.
This will be fixed once the API for the parser is better.
.. class:: Compile()