mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
#16152: fix tokenize to ignore whitespace at the end of the code when no newline is found. Patch by Ned Batchelder.
This commit is contained in:
parent
4552e3f95c
commit
2cc3b4ba9f
4 changed files with 12 additions and 1 deletions
|
@ -552,6 +552,11 @@ Evil tabs
|
|||
DEDENT '' (4, 0) (4, 0)
|
||||
DEDENT '' (4, 0) (4, 0)
|
||||
|
||||
Pathological whitespace (http://bugs.python.org/issue16152)
|
||||
>>> dump_tokens("@ ")
|
||||
ENCODING 'utf-8' (0, 0) (0, 0)
|
||||
OP '@' (1, 0) (1, 1)
|
||||
|
||||
Non-ascii identifiers
|
||||
|
||||
>>> dump_tokens("Örter = 'places'\\ngrün = 'green'")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue