diff options
author | Alexander Buchkovsky <olex.buchkovsky@gmail.com> | 2018-09-04 16:10:28 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2018-09-04 16:10:28 (GMT) |
commit | 266f4904a222a784080e29aad0916849e507515d (patch) | |
tree | b4ae212e6a9c6103e38d2d9679566b407bf0e81b /Misc | |
parent | 7917aadb3edb7616d6164c5eaba24df6ac0a5fc6 (diff) | |
download | cpython-266f4904a222a784080e29aad0916849e507515d.zip cpython-266f4904a222a784080e29aad0916849e507515d.tar.gz cpython-266f4904a222a784080e29aad0916849e507515d.tar.bz2 |
bpo-34563: Fix for invalid assert on big output of multiprocessing.Process (GH-9027)
Fix for invalid assert on big output of multiprocessing.Process.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-09-01-20-43-10.bpo-34563.7NQK7B.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-09-01-20-43-10.bpo-34563.7NQK7B.rst b/Misc/NEWS.d/next/Library/2018-09-01-20-43-10.bpo-34563.7NQK7B.rst new file mode 100644 index 0000000..9127af0 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-09-01-20-43-10.bpo-34563.7NQK7B.rst @@ -0,0 +1 @@ +On Windows, fix multiprocessing.Connection for very large read: fix _winapi.PeekNamedPipe() and _winapi.ReadFile() for read larger than INT_MAX (usually 2^31-1).
\ No newline at end of file |