mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
* Check for KeyboardInerrupt in parser.__call__
This commit is contained in:
parent
03e8a4293d
commit
c025a0c64b
|
@ -5,6 +5,7 @@ from __future__ import unicode_literals
|
|||
cimport cython
|
||||
|
||||
from cpython.ref cimport PyObject, Py_INCREF, Py_XDECREF
|
||||
from cpython.exc cimport PyErr_CheckSignals
|
||||
|
||||
from libc.stdint cimport uint32_t, uint64_t
|
||||
from libc.string cimport memset, memcpy
|
||||
|
@ -109,6 +110,8 @@ cdef class Parser:
|
|||
)
|
||||
|
||||
action.do(stcls, action.label)
|
||||
# Check for KeyboardInterrupt etc. Untested
|
||||
PyErr_CheckSignals()
|
||||
self.moves.finalize_state(stcls)
|
||||
tokens.set_parse(stcls._sent)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user