From d08972fdb92cad6b813d22205752c97ea18df060 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 11 Apr 2018 19:15:51 +0300 Subject: bpo-33260: Regenerate token.py after removing ASYNC and AWAIT. (GH-6447) --- Lib/tokenize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/tokenize.py') diff --git a/Lib/tokenize.py b/Lib/tokenize.py index f5c6ac7f5e..6528b90061 100644 --- a/Lib/tokenize.py +++ b/Lib/tokenize.py @@ -284,7 +284,7 @@ class Untokenizer: self.encoding = tokval continue - if toknum in (NAME, NUMBER, ASYNC, AWAIT): + if toknum in (NAME, NUMBER): tokval += ' ' # Insert a space between two consecutive strings -- cgit v1.2.1