]> granicus.if.org Git - python/commit
PEP 475: on EINTR, retry the function even if the timeout is equals to zero
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 30 Mar 2015 19:33:51 +0000 (21:33 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Mon, 30 Mar 2015 19:33:51 +0000 (21:33 +0200)
commit6aa446cf039f9533a5ecf2400bf060db4313a417
tree2530c77e76dce1b8fce38980ae24a6a9d7ed50b3
parentf70e1ca0fc30426d12aa8fc6684764ee11a66777
PEP 475: on EINTR, retry the function even if the timeout is equals to zero

Retry:

* signal.sigtimedwait()
* threading.Lock.acquire()
* threading.RLock.acquire()
* time.sleep()
Modules/_threadmodule.c
Modules/signalmodule.c
Modules/timemodule.c