Fix a small todo.

This commit is contained in:
Dave Halter
2017-05-26 13:59:33 -04:00
parent 406064c457
commit 53674772ff

View File

@@ -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)