Commit 8399ff2d authored by Kirill Smelkov's avatar Kirill Smelkov

time.pyx: Move misc nogil functions into under `cdef nogil` block

Just cosmetics - easier to oversee the code.
parent 873cf8aa
...@@ -244,17 +244,19 @@ pymillisecond = millisecond ...@@ -244,17 +244,19 @@ pymillisecond = millisecond
pyminute = minute pyminute = minute
pyhour = hour pyhour = hour
cdef double now_pyexc() nogil except +topyexc: cdef nogil:
return now()
cdef void sleep_pyexc(double dt) nogil except +topyexc: double now_pyexc() except +topyexc:
sleep(dt) return now()
void sleep_pyexc(double dt) except +topyexc:
cdef void _Ticker_stop_pyexc(PyTicker t) nogil except +topyexc: sleep(dt)
t._stop()
cdef bint _Timer_stop_pyexc (PyTimer t) nogil except +topyexc: void _Ticker_stop_pyexc(PyTicker t) except +topyexc:
return t._stop() t._stop()
cdef void _Timer_reset_pyexc(PyTimer t, double dt) nogil except +topyexc: bint _Timer_stop_pyexc (PyTimer t) except +topyexc:
t._reset(dt) return t._stop()
void _Timer_reset_pyexc(PyTimer t, double dt) except +topyexc:
t._reset(dt)
cdef bint _callpyf(object f): cdef bint _callpyf(object f):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment