diff options
author | nierob <nierob@users.noreply.github.com> | 2018-11-23 15:46:12 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2018-11-23 15:46:12 (GMT) |
commit | b409ffa848b280c1db1b4f450bfae14f263099ac (patch) | |
tree | 0c240c1514a28c75ad2300852712cfdc31faaf15 /Misc | |
parent | f653fd4d950ac092719b6152e38d77c62b443125 (diff) | |
download | cpython-b409ffa848b280c1db1b4f450bfae14f263099ac.zip cpython-b409ffa848b280c1db1b4f450bfae14f263099ac.tar.gz cpython-b409ffa848b280c1db1b4f450bfae14f263099ac.tar.bz2 |
bpo-35189: Retry fnctl calls on EINTR (GH-10413)
Modify the following fnctl function to retry if interrupted by a signal
(EINTR): flock, lockf, fnctl.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-11-09-13-35-36.bpo-35189.gog-sl.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-11-09-13-35-36.bpo-35189.gog-sl.rst b/Misc/NEWS.d/next/Library/2018-11-09-13-35-36.bpo-35189.gog-sl.rst new file mode 100644 index 0000000..3408ca4 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-11-09-13-35-36.bpo-35189.gog-sl.rst @@ -0,0 +1,2 @@ +Modify the following fnctl function to retry if interrupted by a signal +(EINTR): flock, lockf, fnctl |