From 2cc3b4ba9ffa658784da03f14a0a068e2c61d1b3 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Sat, 3 Nov 2012 17:38:43 +0200 Subject: #16152: fix tokenize to ignore whitespace at the end of the code when no newline is found. Patch by Ned Batchelder. --- Lib/test/test_tokenize.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Lib/test/test_tokenize.py') diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py index b6a9ca1e16..f9652ce7b2 100644 --- a/Lib/test/test_tokenize.py +++ b/Lib/test/test_tokenize.py @@ -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'") -- cgit v1.2.1