From 5fa38d4c3bdae68abfe235709b69b1bc8ae75c3a Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Langa?= Date: Tue, 20 Mar 2018 19:04:49 -0700 Subject: [PATCH] Fix tests on 3.7 --- blib2to3/pgen2/tokenize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blib2to3/pgen2/tokenize.py b/blib2to3/pgen2/tokenize.py index 45afc5f..6dada47 100644 --- a/blib2to3/pgen2/tokenize.py +++ b/blib2to3/pgen2/tokenize.py @@ -31,7 +31,7 @@ __credits__ = \ import string, re from codecs import BOM_UTF8, lookup -from lib2to3.pgen2.token import * +from blib2to3.pgen2.token import * from . import token __all__ = [x for x in dir(token) if x[0] != '_'] + ["tokenize", -- 2.39.5