diff options
author | Koki Saito <49419225+saito828koki@users.noreply.github.com> | 2022-10-03 00:41:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-03 00:41:01 (GMT) |
commit | 19ca114645bd8796cf4094e152b1fa9944da473d (patch) | |
tree | b29d4dbc8ece5be4a1e2380fda58e2372bd63259 /Misc/NEWS.d | |
parent | 14d4f68ebb495fe7ccbaf283386d861a054d8288 (diff) | |
download | cpython-19ca114645bd8796cf4094e152b1fa9944da473d.zip cpython-19ca114645bd8796cf4094e152b1fa9944da473d.tar.gz cpython-19ca114645bd8796cf4094e152b1fa9944da473d.tar.bz2 |
gh-96819: multiprocessing.resource_tracker: check if length of pipe write <= 512 (#96890)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-09-17-13-15-10.gh-issue-96819.6RfqM7.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-09-17-13-15-10.gh-issue-96819.6RfqM7.rst b/Misc/NEWS.d/next/Library/2022-09-17-13-15-10.gh-issue-96819.6RfqM7.rst new file mode 100644 index 0000000..07b62a8 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-09-17-13-15-10.gh-issue-96819.6RfqM7.rst @@ -0,0 +1 @@ +Fixed check in :mod:`multiprocessing.resource_tracker` that guarantees that the length of a write to a pipe is not greater than ``PIPE_BUF``. |