From: Ɓukasz Langa Date: Wed, 21 Mar 2018 02:04:49 +0000 (-0700) Subject: Fix tests on 3.7 X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/5fa38d4c3bdae68abfe235709b69b1bc8ae75c3a Fix tests on 3.7 --- 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",