main
Commits on Sep 10, 2022
Commits on Sep 9, 2022
-
-
gh-96710: Make the test timing more lenient for the int/str DoS regre…
…ssion test. (#96717) A regression would still absolutely fail and even a flaky pass isn't harmful as it'd fail most of the time across our N system test runs. Windows has a low resolution timer and CI systems are prone to odd timing so this just gives more leeway to avoid flakiness.
-
gh-96624: Fix test_dotted_but_module_not_loaded in testpatch.py (GH-9…
…6691) * Update test_dotted_but_module_not_loaded to reflect the move of unittest.test to test.test_unittest.
Commits on Sep 8, 2022
-
GH-96636: Remove all uses of NOTRACE_DISPATCH (GH-96643)
Co-authored-by: Brandt Bucher <brandtbucher@gmail.com>
-
gh-96652: Fix faulthandler chained signal without sigaction() (#96666)
Fix the faulthandler implementation of faulthandler.register(signal, chain=True) if the sigaction() function is not available: don't call the previous signal handler if it's NULL.
-
Commits on Sep 7, 2022
-
gh-96665: Fixes build break on older MSVC versions due to C++20 featu…
…res in argument clinic (GH-96667)
-
gh-96268: Fix loading invalid UTF-8 (#96270)
This makes tokenizer.c:valid_utf8 match stringlib/codecs.h:decode_utf8. It also fixes an off-by-one error introduced in 3.10 for the line number when the tokenizer reports bad UTF8.
-
gh-94781: Fix Windows projects not cleaning intermediate and output f…
…iles for frozen modules (GH-96423)
-
gh-89545: Updates platform module to use new internal _wmi module on …
…Windows to directly query OS properties (GH-96289)
-
-
-
gh-88057: in compile.c, assertion that stackdepth is alway >=0 is mis…
…sing in one place (GH-96513)
-
gh-94808: Improve coverage of _PyBytes_FormatEx (GH-95895)
There were two specific areas not covered: - %(name) syntax - %*s syntax Automerge-Triggered-By: GH:iritkatriel
Commits on Sep 6, 2022
-
-
gh-96478: Fix new test when run in refleak mode (#96615)
./python.exe -m test -R : test.test_typing would fail, apparently because the dictionary used in the @patch decorator was modified.