Permalink
3.9
Commits on Aug 11, 2021
Commits on Aug 10, 2021
Commits on Aug 9, 2021
Commits on Aug 8, 2021
Commits on Aug 7, 2021
Commits on Aug 6, 2021
-
bpo-44756: [docs] revert automated virtual environment creation on `m…
-
bpo-44849: Fix os.set_inheritable() on FreeBSD 14 with O_PATH (GH-27623)
Fix the os.set_inheritable() function on FreeBSD 14 for file descriptor opened with the O_PATH flag: ignore the EBADF error on ioctl(), fallback on the fcntl() implementation. (cherry picked from commit c24896c) Co-authored-by: Victor Stinner <vstinner@python.org>
-
[3.9] bpo-40928: notify users running test_decimal on macOS of malloc…
… warnings (GH-26783) (GH-27629) * When trying to allocate very large regions on macOS, malloc does not fail silently. It sends a noisy error out to STDERR * This provides a helper function to warn the user, and provides the warning for test_decimal, which consistently generates these warnings on macOS. Co-authored-by: Łukasz Langa <lukasz@langa.pl>. (cherry picked from commit 15d3c14) Co-authored-by: Jack DeVries <58614260+jdevries3133@users.noreply.github.com>
Commits on Aug 4, 2021
Commits on Aug 3, 2021
-
bpo-41886: Fix documented type of PyType_Type (GH-22454)
(cherry picked from commit ac811f9) Co-authored-by: da-woods <dw-git@d-woods.co.uk>
-
bpo-39091: Fix segfault when Exception constructor returns non-except…