mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
16 lines
314 B
Python
16 lines
314 B
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
from ...tokens import Doc
|
|
from ...vocab import Vocab
|
|
|
|
|
|
def test_issue599():
|
|
doc = Doc(Vocab())
|
|
doc.is_tagged = True
|
|
doc.is_parsed = True
|
|
bytes_ = doc.to_bytes()
|
|
doc2 = Doc(doc.vocab)
|
|
doc2.from_bytes(bytes_)
|
|
assert doc2.is_parsed
|