]> granicus.if.org Git - python/commit
Issue #23694: Handle EINTR in _Py_open() and _Py_fopen_obj()
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 18 Mar 2015 08:52:54 +0000 (09:52 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Wed, 18 Mar 2015 08:52:54 +0000 (09:52 +0100)
commita47fc5c2ddcf86eb3cb1ad628d04bf3764cfce59
tree4eba4aeb0e12436a1c9a811bbac87951b19bc27f
parent9c1a9b2657b5e39c6359698e160cb2b7e6df1193
Issue #23694: Handle EINTR in _Py_open() and _Py_fopen_obj()

Retry open()/fopen() if it fails with EINTR and the Python signal handler
doesn't raise an exception.
Python/fileutils.c