* Rename spans.pyx to span.pyx

This commit is contained in:
Matthew Honnibal 2015-11-03 23:51:05 +11:00
parent 116da5990a
commit 9482d616bc
4 changed files with 2 additions and 2 deletions

View File

@ -163,7 +163,7 @@ def run_setup(exts):
'spacy.tests.munge',
'spacy.tests.parser',
'spacy.tests.serialize',
'spacy.tests.spans',
'spacy.tests.span',
'spacy.tests.tagger',
'spacy.tests.tokenizer',
'spacy.tests.tokens',

View File

@ -18,7 +18,7 @@ from ..attrs cimport POS, LEMMA, TAG, DEP, HEAD, SPACY, ENT_IOB, ENT_TYPE
from ..parts_of_speech cimport CONJ, PUNCT, NOUN
from ..parts_of_speech cimport univ_pos_t
from ..lexeme cimport Lexeme
from .spans cimport Span
from .span cimport Span
from .token cimport Token
from ..serialize.bits cimport BitArray
from ..util import normalize_slice