summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-96471: Add asyncio queue shutdown (#104228)Laurie O2024-04-065-3/+301
* gh-116622: Test updates for Android (#117299)Malcolm Smith2024-04-058-14/+21
* GH-77609: Add recurse_symlinks argument to `pathlib.Path.glob()` (#117311)Barney Gale2024-04-055-95/+34
* gh-116608: Ignore UTF-16 BOM in importlib.resources._functional tests (GH-117...Petr Viktorin2024-04-051-4/+10
* gh-111140: PyLong_From/AsNativeBytes: Take *flags* rather than just *endianne...Steve Dower2024-04-056-88/+319
* GH-114847: Speed up `posixpath.realpath()` (#114848)Barney Gale2024-04-053-34/+64
* gh-116608: importlib.resources: Un-deprecate functional API & add subdirector...Petr Viktorin2024-04-056-15/+533
* gh-117457: Regen executor cases post PR #117477 (#117559)Erlend E. Aasland2024-04-051-2/+8
* gh-116303: Don't build xxlimited and xxlimited_35 if --disable-test-modules i...Erlend E. Aasland2024-04-052-4/+4
* GH-117457: Correct pystats uop "miss" counts (GH-117477)Michael Droettboom2024-04-044-144/+548
* gh-117549: Match declaration order for _Py_BackoffCounter initializer (#117551)Michael Droettboom2024-04-041-1/+1
* gh-117474: Skip GIL test in free-threaded build (#117475)Sam Gross2024-04-041-0/+1
* gh-112075: Make _PyDict_LoadGlobal thread safe (#117529)Dino Viehland2024-04-046-29/+23
* gh-117478: Add `@support.requires_gil_enabled` decorator (#117479)Sam Gross2024-04-047-11/+23
* gh-117435: Make `SemLock` thread-safe in free-threaded build (#117436)Sam Gross2024-04-042-9/+37
* gh-117494: extract the Instruction Sequence data structure into a separate fi...Irit Katriel2024-04-0413-224/+283
* gh-116968: Reimplement Tier 2 counters (#117144)Guido van Rossum2024-04-0419-235/+313
* gh-109802: Add coverage test for complex_abs() (GH-117449)Sergey B Kirpichev2024-04-041-0/+3
* [doc] Update logging documentation to improve grammar and elucidate an exampl...Vinay Sajip2024-04-042-11/+72
* gh-117521: Improve typing.TypeGuard docstring (#117522)Jelle Zijlstra2024-04-041-11/+14
* gh-117467: Add preserving of mailbox owner on flush (GH-117510)Tony Mountifield2024-04-043-3/+51
* gh-113317: Finish splitting Argument Clinic into sub-files (#117513)Victor Stinner2024-04-0410-2194/+2238
* gh-117459: Keep the traceback in _convert_future_exc (#117460)rsp4jack2024-04-043-4/+22
* gh-117205: Increase chunksize when compiling pyc in parallel (#117206)Shantanu2024-04-032-1/+3
* gh-117267: Ensure DirEntry.stat().st_ctime still contains creation time durin...Steve Dower2024-04-032-0/+9
* gh-114329: Fix PyList_GetItemRef() limited C API definition (#117520)Victor Stinner2024-04-036-4/+12
* gh-113317: Argument Clinic: Add libclinic.clanguage (#117455)Victor Stinner2024-04-035-1602/+1635
* gh-116168: Remove extra `_CHECK_STACK_SPACE` uops (#117242)Peter Lazorchak2024-04-038-126/+494
* gh-76785: Raise InterpreterError, Not RuntimeError (gh-117489)Eric Snow2024-04-038-23/+40
* gh-117431: Adapt str.find and friends to Argument Clinic (#117468)Erlend E. Aasland2024-04-034-217/+439
* GH-114847: Raise FileNotFoundError when getcwd() returns '(unreachable)' (#11...Barney Gale2024-04-032-0/+16
* gh-117215 Make the fromskey() signature match dict.fromkeys(). (gh-117493)Raymond Hettinger2024-04-031-3/+3
* gh-59215: unittest: restore _top_level_dir at end of discovery (GH-15242)Zackery Spytz2024-04-034-6/+40
* gh-116303: Skip test module dependent tests if test modules are unavailable (...Erlend E. Aasland2024-04-0357-124/+256
* gh-117381: Improve error messages for ntpath.commonpath() (GH-117382)Nice Zombies2024-04-033-53/+54
* gh-117483: Accept "Broken pipe" as valid error message in `test_wrong_cert_tl...Sam Gross2024-04-031-1/+3
* GH-70647: Deprecate strptime day of month parsing without a year present to a...Gregory P. Smith2024-04-037-1/+117
* gh-117431: Adapt bytes and bytearray .startswith() and .endswith() to Argumen...Erlend E. Aasland2024-04-037-55/+318
* gh-117431: Fix str.endswith docstring (#117499)Erlend E. Aasland2024-04-032-8/+16
* gh-117281: Change weakref repr() to fully qualified name (#117285)Victor Stinner2024-04-032-8/+57
* gh-91565: Update issue tracker URL in error message. (#117450)Ezio Melotti2024-04-031-2/+2
* gh-117431: Adapt str.startswith and str.endswith to Argument Clinic (#117466)Erlend E. Aasland2024-04-034-49/+149
* gh-76785: Fix a Refleak in _interpreters.new_config() (gh-117491)Eric Snow2024-04-031-0/+2
* gh-76785: Consolidate Some Interpreter-related Testing Helpers (gh-117485)Eric Snow2024-04-0210-312/+526
* gh-76785: Add PyInterpreterConfig Helpers (gh-117170)Eric Snow2024-04-0213-86/+754
* gh-117349: Micro-optimize a few `os.path` functions (#117350)Nice Zombies2024-04-024-39/+35
* Fix successor opcode name printing in Tier 2 DEOPT debug message (#117471)Guido van Rossum2024-04-021-1/+1
* gh-112087: Make `list.extend(dict)` behave atomically (#117438)Sam Gross2024-04-021-0/+5
* gh-117440: Make `syslog` thread-safe in free-threaded builds (#117441)Sam Gross2024-04-022-5/+19
* gh-117074: Update Traversable.joinpath docs to the 3.11+ protocol (GH-117113)Petr Viktorin2024-04-021-2/+24