From 60fdf4d5f11603134ddff58a64c7818699e55a50 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sat, 24 Sep 2016 01:17:18 +0200 Subject: [PATCH] Remove commented out debuggng code --- spacy/syntax/parser.pyx | 3 --- 1 file changed, 3 deletions(-) diff --git a/spacy/syntax/parser.pyx b/spacy/syntax/parser.pyx index 22f37127a..41baa0505 100644 --- a/spacy/syntax/parser.pyx +++ b/spacy/syntax/parser.pyx @@ -177,9 +177,6 @@ cdef class Parser: action = self.moves.c[guess] if not eg.is_valid[guess]: - # with gil: - # move_name = self.moves.move_name(action.move, action.label) - # print 'invalid action:', move_name return 1 action.do(state, action.label)