mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-24 17:06:29 +03:00
* Make minor efficiency improvement in Doc.__iter__
This commit is contained in:
parent
cd91914dd8
commit
ced59ab9ea
|
@ -134,7 +134,11 @@ cdef class Doc:
|
|||
Yields:
|
||||
token (Token):
|
||||
"""
|
||||
cdef int i
|
||||
for i in range(self.length):
|
||||
if self._py_tokens[i] is not None:
|
||||
yield self._py_tokens[i]
|
||||
else:
|
||||
yield Token.cinit(self.vocab, &self.data[i], i, self)
|
||||
|
||||
def __len__(self):
|
||||
|
|
Loading…
Reference in New Issue
Block a user