mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
14 lines
241 B
Python
14 lines
241 B
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
from ...vocab import Vocab
|
|
from ...tokens import Doc
|
|
|
|
import pytest
|
|
|
|
|
|
def test_issue589():
|
|
vocab = Vocab()
|
|
vocab.strings.set_frozen(True)
|
|
doc = Doc(vocab, words=['whata'])
|