* Fix incorrect whitespacing in Doc.text. This change is potentially breaking, to anyone who was relying on the previous incorrect semantics.

This commit is contained in:
Matthew Honnibal 2016-03-29 13:02:42 +11:00
parent a862edc0e6
commit ad119c074f

View File

@ -166,7 +166,7 @@ cdef class Doc:
@property @property
def text(self): def text(self):
return u' '.join(t.text for t in self) return u''.join(t.text for t in self)
property ents: property ents:
def __get__(self): def __get__(self):