main
Name already in use
Commits on Feb 27, 2023
-
gh-102296 Document that inspect.Parameter kinds support ordering (GH-…
…102297) Automerge-Triggered-By: GH:AlexWaygood
-
gh-91038: Change default argument value to
Falseinstead of0(#3……1621) The argument is used as a switch and corresponds to a boolean logic. Therefore it is more intuitive to use the corresponding constant `False` as default value instead of the integer `0`. Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
Commits on Feb 26, 2023
-
-
gh-102259: Fix re doc issue regarding right square brackets (#102264)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Commits on Feb 25, 2023
-
gh-102252: Improve coverage of test_bool.py (#102253)
Add tests for conversion from bool to complex.
-
asyncio docs: Fix dangling hyphen (#102227)
Currently this gets rendered with a dangling hyphen.
-
-
gh-95675: fix uid and gid at test_add_dir_getmember (gh-102207)
Co-authored-by: Seonkyo Ok <seonkyo.ok@linecorp.com>
Commits on Feb 24, 2023
-
gh-101765: Fix SystemError / segmentation fault in iter
__reduce__……when internal access of `builtins.__dict__` exhausts the iterator (#101769)
-
gh-102209: Disable the timeout in test_implied_dirs_performance. (#10…
-
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternat…
…ives (in Modules/) (#102196)
-
gh-102158: Add tests for
softkwlist(#102159)--------- Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Commits on Feb 23, 2023
-
Fix deadlock on shutdown if test_current_{exception,frames} fails (#1…
…02019) * Don't deadlock on shutdown if test_current_{exception,frames} fails These tests spawn a thread that waits on a threading.Event. If the test fails any of its assertions, the Event won't be signaled and the thread will wait indefinitely, causing a deadlock when threading._shutdown() tries to join all outstanding threads. Co-authored-by: Brett Simmers <bsimmers@meta.com> * Add a news entry * Fix whitespace --------- Co-authored-by: Brett Simmers <bsimmers@meta.com> Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
-
gh-101476: Add _PyType_GetModuleState (GH-101477)
For fast module state access from heap type methods.
-
gh-99108: Followup fix for Modules/Setup (GH-102183)
Automerge-Triggered-By: GH:erlend-aasland
-
gh-93649: Split exception tests from _testcapimodule.c (GH-102173)
Automerge-Triggered-By: GH:erlend-aasland
-
gh-101981: Consolidate macOS configure steps in CI (GH-102131)
Automerge-Triggered-By: GH:erlend-aasland
-
bpo-23224: Fix segfaults and multiple leaks in the lzma and bz2 modul…
…es (GH-7822) lzma.LZMADecompressor and bz2.BZ2Decompressor objects caused segfaults when their `__init__()` methods were not called. lzma.LZMADecompressor, lzma.LZMACompressor, bz2.BZ2Compressor, and bz2.BZ2Decompressor objects would leak locks and internal buffers when their `__init__()` methods were called multiple times. https://bugs.python.org/issue23224
-