Commit 806f9d70 authored by Benjamin Peterson's avatar Benjamin Peterson

document TokenError and unclosed expression behavior (closes #12063)

Patch by Amandine Lee.
parent c3e1e902
......@@ -98,6 +98,24 @@ back the modified script.
.. versionadded:: 2.5
.. exception:: TokenError
Raised when either a docstring or expression that may be split over several
lines is not completed anywhere in the file, for example::
"""Beginning of
docstring
or::
[1,
2,
3
Note that unclosed single-quoted strings do not cause an error to be
raised. They are tokenized as ``ERRORTOKEN``, followed by the tokenization of
their contents.
Example of a script re-writer that transforms float literals into Decimal
objects::
......
......@@ -750,6 +750,7 @@ Julia Lawall
Chris Lawrence
Brian Leair
Mathieu Leduc-Hamel
Amandine Lee
Christopher Lee
Inyeol Lee
James Lee
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment