From 5fa44e93f1de1d97a201e8503aa9bc4eac044579 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 23 Feb 2018 16:48:54 +0100 Subject: [PATCH] Set unicode_literals in matcher --- spacy/matcher.pyx | 1 + 1 file changed, 1 insertion(+) diff --git a/spacy/matcher.pyx b/spacy/matcher.pyx index 4668f14a2..11ed2cc26 100644 --- a/spacy/matcher.pyx +++ b/spacy/matcher.pyx @@ -1,3 +1,4 @@ +from __future__ import unicode_literals # cython: infer_types=True # cython: profile=True from libcpp.vector cimport vector