commit | 9a0d7a7648547ffb77144bf2480155f6d7940dea | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@redhat.com> | Thu Nov 22 15:03:40 2018 +0100 |
committer | GitHub <noreply@github.com> | Thu Nov 22 15:03:40 2018 +0100 |
tree | 4972ec72abbb88219f7843aab4d050b90b8427c0 | |
parent | 4d73ae776140a583fdfe8f016d88cc767791e481 [diff] |
bpo-24658: os.read() reuses _PY_READ_MAX (GH-10657) os_read_impl() now also truncates the size to _PY_READ_MAX on macOS, to avoid to allocate a larger buffer even if _Py_read() is limited to _PY_READ_MAX bytes (ex: INT_MAX on macOS).