Merge branch 'develop' of https://github.com/explosion/spaCy into develop

This commit is contained in:
Matthew Honnibal 2017-09-18 11:36:21 -05:00
commit 217e7891cd
1 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ cdef class Doc:
""" """
with path.open('rb') as file_: with path.open('rb') as file_:
bytes_data = file_.read() bytes_data = file_.read()
self.from_bytes(bytes_data, **exclude) return self.from_bytes(bytes_data, **exclude)
def to_bytes(self, **exclude): def to_bytes(self, **exclude):
"""Serialize, i.e. export the document contents to a binary string. """Serialize, i.e. export the document contents to a binary string.