Commit bcfe2f7c authored by Stefan Behnel's avatar Stefan Behnel

fix missing import in Py3.x

parent dd28c475
......@@ -12,11 +12,12 @@ cython.declare(Nodes=object, ExprNodes=object, EncodedString=object,
FileSourceDescriptor=object, lookup_unicodechar=object,
Future=object, Options=object, error=object, warning=object,
Builtin=object, ModuleNode=object, Utils=object,
re=object, _unicode=object, _bytes=object, partial=object)
re=object, _unicode=object, _bytes=object,
partial=object, reduce=object)
import re
from unicodedata import lookup as lookup_unicodechar
from functools import partial
from functools import partial, reduce
from .Scanning import PyrexScanner, FileSourceDescriptor
from . import Nodes
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment