From 09a3e54176876f8d39425e20eee2f1c93845b052 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 31 Oct 2014 17:45:26 +1100 Subject: [PATCH] * Delete print statements from stringstore --- spacy/utf8string.pyx | 2 -- 1 file changed, 2 deletions(-) diff --git a/spacy/utf8string.pyx b/spacy/utf8string.pyx index 07b92e5d6..8cb2bebd2 100644 --- a/spacy/utf8string.pyx +++ b/spacy/utf8string.pyx @@ -58,12 +58,10 @@ cdef class StringStore: strings = [] cdef Utf8Str* string cdef bytes py_string - print "Dump strings" for i in range(self.size): string = &self.strings[i] py_string = string.chars[:string.length] strings.append(py_string) - print len(strings) with open(loc, 'w') as file_: ujson.dump(strings, file_, ensure_ascii=False)