diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-10-03 01:11:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-03 01:11:17 (GMT) |
commit | c2d3f73da780ce4d568f541fb7f55917a814d65c (patch) | |
tree | 99a0e306a1169f0c942dc4db73e5bda15f0b6e1a /Misc | |
parent | 72d445a22e4fe59f11f090762f2517a60e164f40 (diff) | |
download | cpython-c2d3f73da780ce4d568f541fb7f55917a814d65c.zip cpython-c2d3f73da780ce4d568f541fb7f55917a814d65c.tar.gz cpython-c2d3f73da780ce4d568f541fb7f55917a814d65c.tar.bz2 |
gh-96819: multiprocessing.resource_tracker: check if length of pipe write <= 512 (GH-96890)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
(cherry picked from commit 19ca114645bd8796cf4094e152b1fa9944da473d)
Co-authored-by: Koki Saito <49419225+saito828koki@users.noreply.github.com>
Diffstat (limited to 'Misc')
-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``. |