From f43d53f2c5dd88b4729c01ecf8ae78bd5823b295 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 13 Feb 2018 17:15:07 +0100 Subject: [PATCH] Remove print statement --- spacy/matcher2.pyx | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/matcher2.pyx b/spacy/matcher2.pyx index d3de94911..2ec32a5e8 100644 --- a/spacy/matcher2.pyx +++ b/spacy/matcher2.pyx @@ -82,7 +82,6 @@ cdef struct MatchC: cdef find_matches(TokenPatternC** patterns, int n, Doc doc): - print("N patterns: ", n) cdef vector[PatternStateC] init_states cdef ActionC null_action = ActionC(-1, -1, -1, -1) for i in range(n):