spaCy/spacy/tests/regression/test_issue589.py

14 lines
241 B
Python
Raw Normal View History

2017-01-10 18:24:10 +00:00
# coding: utf-8
from __future__ import unicode_literals
2016-11-01 11:33:36 +00:00
from ...vocab import Vocab
from ...tokens import Doc
2017-01-10 18:24:10 +00:00
import pytest
2016-11-01 11:33:36 +00:00
def test_issue589():
vocab = Vocab()
vocab.strings.set_frozen(True)
2017-01-10 18:24:10 +00:00
doc = Doc(vocab, words=['whata'])