* Rename spans.pyx to span.pyx

This commit is contained in:
Matthew Honnibal 2015-11-04 00:14:40 +11:00
parent 9482d616bc
commit 3ddea19b2b
2 changed files with 2 additions and 2 deletions

View File

@ -217,7 +217,7 @@ MOD_NAMES = ['spacy.parts_of_speech', 'spacy.strings',
'spacy.syntax.arc_eager',
'spacy.syntax._parse_features',
'spacy.gold', 'spacy.orth',
'spacy.tokens.doc', 'spacy.tokens.spans', 'spacy.tokens.token',
'spacy.tokens.doc', 'spacy.tokens.span', 'spacy.tokens.token',
'spacy.serialize.packer', 'spacy.serialize.huffman', 'spacy.serialize.bits',
'spacy.cfile', 'spacy.matcher',
'spacy.syntax.ner',

View File

@ -1,5 +1,5 @@
from .doc import Doc
from .token import Token
from .spans import Span
from .span import Span
__all__ = [Doc, Token, Span]