Allow input text of length up to max_length, inclusive (#2922)

This commit is contained in:
Daniel Hershcovich 2018-11-13 17:46:29 +02:00 committed by Matthew Honnibal
parent 75e7d503b7
commit d3d419ecc0
1 changed files with 1 additions and 1 deletions

View File

@ -334,7 +334,7 @@ class Language(object):
>>> tokens[0].text, tokens[0].head.tag_
('An', 'NN')
"""
if len(text) >= self.max_length:
if len(text) > self.max_length:
raise ValueError(Errors.E088.format(length=len(text),
max_length=self.max_length))
doc = self.make_doc(text)