Remove comments and add TODO

This commit is contained in:
ines 2017-10-25 12:15:43 +02:00
parent 4d97efc3b5
commit 72497c8cb2
1 changed files with 1 additions and 4 deletions

View File

@ -63,11 +63,8 @@ cdef class Tokenizer:
return (self.__class__, args, None, None)
cpdef Doc tokens_from_list(self, list strings):
# TODO: deprecation warning
return Doc(self.vocab, words=strings)
#raise NotImplementedError(
# "Method deprecated in 1.0.\n"
# "Old: tokenizer.tokens_from_list(strings)\n"
# "New: Doc(tokenizer.vocab, words=strings)")
@cython.boundscheck(False)
def __call__(self, unicode string):