Fix issue #672: ent_iob_ was a string, not unicode, due to missing unicode_literals statement.

This commit is contained in:
Matthew Honnibal 2016-12-18 22:33:53 +01:00
parent 29fb9db4e8
commit 404019ad2f

View File

@ -1,3 +1,7 @@
# encoding: utf8
# cython: infer_types=True
from __future__ import unicode_literals
from libc.string cimport memcpy
from cpython.mem cimport PyMem_Malloc, PyMem_Free
# Compiler crashes on memory view coercion without this. Should report bug.