From 53674772ff624c8c30e0993eb364282c6e4031ad Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 26 May 2017 13:59:33 -0400 Subject: [PATCH] Fix a small todo. --- parso/tokenize.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/parso/tokenize.py b/parso/tokenize.py index 7bc2dbd..6135931 100644 --- a/parso/tokenize.py +++ b/parso/tokenize.py @@ -170,9 +170,8 @@ for t in _all_string_prefixes(): triple_quoted.add(p) -# TODO add with? ALWAYS_BREAK_TOKENS = (';', 'import', 'class', 'def', 'try', 'except', - 'finally', 'while', 'return') + 'finally', 'while', 'with', 'return') pseudo_token_compiled = _compile(PseudoToken)