From 45ae1ce428ab0a554474fa04aa30e895ae6d4dc0 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 16 Jul 2015 01:27:11 +0200 Subject: [PATCH] * Remove unused declaration in parser --- spacy/syntax/parser.pyx | 3 --- 1 file changed, 3 deletions(-) diff --git a/spacy/syntax/parser.pyx b/spacy/syntax/parser.pyx index 1e96bc7e2..85308fc0e 100644 --- a/spacy/syntax/parser.pyx +++ b/spacy/syntax/parser.pyx @@ -67,9 +67,6 @@ def ParserFactory(transition_system): return lambda strings, dir_: Parser(strings, dir_, transition_system) -DEF stack_class_alloc_limit = 256 - - cdef class Parser: def __init__(self, StringStore strings, model_dir, transition_system): if not os.path.exists(model_dir):