python-checkins
Thread
Date
Earlier messages
Later messages
Messages by Thread
[Python-checkins] gh-148211: decompose `[_POP_TWO/_INSERT_2]_LOAD_CONST_INLINE_BORROW` in JIT (GH-148357)
Fidget-Spinner
[Python-checkins] Fix format string mismatch for `uint64_t` in `_remote_debugging/threads.c` (#148360)
StanFromIreland
[Python-checkins] gh-148171: Convert variadic argument opcodes to leave their arguments on the stack (`CALL_BUILTIN_FAST_WITH_KEYWORDS`) (#148366)
Fidget-Spinner
[Python-checkins] gh-148171: convert more variadic uops to leave input on stack in JIT (#148361)
kumaraditya303
[Python-checkins] gh-142518: add thread safety docs for set C-APIs (#146562)
kumaraditya303
[Python-checkins] gh-139038: Credit more people for JIT in 3.15 (GH-148359)
Fidget-Spinner
[Python-checkins] gh-142518: annotate dict C-APIs for thread safety (#145875)
kumaraditya303
[Python-checkins] [3.14] gh-148037: remove critical section from `PyCode_Addr2Line` (GH… (#148353)
kumaraditya303
[Python-checkins] [3.14] gh-148284: Block inlining of gigantic functions in ceval.c for clang 22 (GH-148334) (GH-148349)
Fidget-Spinner
[Python-checkins] gh-131798: split `_CALL_BUILTIN_CLASS` to smaller uops (#148094)
kumaraditya303
[Python-checkins] gh-148284: Block inlining of gigantic functions in ceval.c for clang 22 (GH-148334)
Fidget-Spinner
[Python-checkins] gh-148171: Convert CALL_BUILTIN_FAST to leave inputs on the stack for refcount elimination in JIT (GH-148172)
Fidget-Spinner
[Python-checkins] Remove dead links to `pkg_resources` in `importlib` docs (#148344)
FFY00
[Python-checkins] gh-148337: Document `importlib.resources` security model (#148340)
FFY00
[Python-checkins] Fix mixed line endings with pre-commit (#148336)
hugovk
[Python-checkins] [3.14] Fix mixed line endings with pre-commit (GH-148336) (#148338)
hugovk
[Python-checkins] [3.13] Fix mixed line endings with pre-commit (GH-148336) (#148339)
hugovk
[Python-checkins] gh-146211: Reject CR/LF in HTTP tunnel request headers (#146212)
sethmlarson
[Python-checkins] gh-148211: decompose `[_POP_CALL_X/_SHUFFLE_2]_LOAD_CONST_INLINE_BORROW` in JIT (GH-148313)
Fidget-Spinner
[Python-checkins] [3.13] gh-145831: email.quoprimime: `decode()` leaves stray `\r` when `eol='\r\n'` (GH-145832) (#148311)
bitdancer
[Python-checkins] [3.14] gh-145831: email.quoprimime: `decode()` leaves stray `\r` when `eol='\r\n'` (GH-145832) (#148312)
bitdancer
[Python-checkins] gh-148037: remove critical section from `PyCode_Addr2Line` (#148103)
kumaraditya303
[Python-checkins] gh-145831: email.quoprimime: `decode()` leaves stray `\r` when `eol='\r\n'` (#145832)
bitdancer
[Python-checkins] gh-148211: decompose `_INSERT_1_LOAD_CONST_INLINE(_BORROW)` in JIT (GH-148283)
Fidget-Spinner
[Python-checkins] [3.14] gh-148091: clarify asyncio.Future.cancel(msg) behaviour (GH-148248) (#148299)
kumaraditya303
[Python-checkins] [3.14] gh-148254: Use singular "sec" in timeit verbose output (GH-148290) (#148303)
hugovk
[Python-checkins] [3.13] gh-148254: Use singular "sec" in timeit verbose output (GH-148290) (#148304)
hugovk
[Python-checkins] [3.13] gh-148091: clarify asyncio.Future.cancel(msg) behaviour (GH-148248) (#148300)
kumaraditya303
[Python-checkins] gh-148254: Use singular "sec" in timeit verbose output (#148290)
hugovk
[Python-checkins] gh-134584 : Optimize and eliminate redundant ref-counting for `MAKE_FUNCTION` in the JIT (GH-144963)
Fidget-Spinner
[Python-checkins] gh-148091: clarify asyncio.Future.cancel(msg) behaviour (#148248)
kumaraditya303
[Python-checkins] [3.14] gh-148067: Fix typo in asyncio event loop docs: 'signals' -> 'signal' (GH-148073) (#148246)
hugovk
[Python-checkins] [3.13] gh-148067: Fix typo in asyncio event loop docs: 'signals' -> 'signal' (GH-148073) (#148245)
hugovk
[Python-checkins] [3.14] gh-148274: properly handle result from `PyObject_VisitManagedDict` (GH-148275) (#148295)
kumaraditya303
[Python-checkins] [3.13] gh-106318: Add example for str.swapcase() method (GH-144575) (#148297)
hugovk
[Python-checkins] [3.14] gh-106318: Add example for str.swapcase() method (GH-144575) (#148296)
hugovk
[Python-checkins] gh-106318: Add example for str.swapcase() method (#144575)
hugovk
[Python-checkins] gh-148274: properly handle result from `PyObject_VisitManagedDict` (#148275)
kumaraditya303
[Python-checkins] [3.14] gh-148250: Mention str subclasses in PyUnicodeWriter_WriteStr() doc (GH-148251) (#148293)
vstinner
[Python-checkins] gh-148250: Mention str subclasses in PyUnicodeWriter_WriteStr() doc (#148251)
vstinner
[Python-checkins] gh-148241: Fix json serialization for str subclasses (#148249)
vstinner
[Python-checkins] [3.14] gh-146646: Document that glob functions suppress OSError (GH-147996) (#148288)
vstinner
[Python-checkins] [3.13] gh-146646: Document that glob functions suppress OSError (GH-147996) (#148289)
vstinner
[Python-checkins] gh-146646: Document that glob functions suppress OSError (#147996)
vstinner
[Python-checkins] gh-148286: Fail when new UB is found by CI UBSan (#148168)
StanFromIreland
[Python-checkins] gh-131798: fold super method lookups in JIT (#148231)
kumaraditya303
[Python-checkins] Update and expand the 'Fuzz Tests for CPython' README (#148270)
StanFromIreland
[Python-checkins] gh-148211: refactor bool to explicit uops in JIT (GH-148258)
Fidget-Spinner
[Python-checkins] [3.14] gh-70039: smtplib: store the server name in ._host in .connect() (GH-115259) (#148273)
bitdancer
[Python-checkins] [3.13] Minor edit: Four space indent in example (gh-148264) (gh-148266)
rhettinger
[Python-checkins] gh-148257: move wave whatsnew to correct section (#148262)
hugovk
[Python-checkins] gh-148225: Validate profiling.sampling replay input (#148243)
pablogsal
[Python-checkins] gh-148211: decompose `_POP_TOP_LOAD_CONST_INLINE(_BORROW)` in JIT (GH-148230)
Fidget-Spinner
[Python-checkins] [3.13] gh-70039: smtplib: store the server name in ._host in .connect() (GH-115259) (#148272)
bitdancer
[Python-checkins] gh-70039: smtplib: store the server name in ._host in .connect() (#115259)
bitdancer
[Python-checkins] gh-148210: fix incorrect `_BINARY_OP_SUBSCR_DICT` JIT optimization (GH-148213)
Fidget-Spinner
[Python-checkins] [3.14] Minor edit: Four space indent in example (gh-148264) (gh-148265)
rhettinger
[Python-checkins] Minor edit: Four space indent in example (#148264)
rhettinger
[Python-checkins] GH-115802: Remove no-plt for Linux AArch64 (#148238)
diegorusso
[Python-checkins] gh-145866: Convert `_CALL_METHOD_DESCRIPTOR_NOARGS` to leave its inputs on the stack to be cleaned up by _POP_TOP (GH-148227)
Fidget-Spinner
[Python-checkins] gh-37883: Safely skip test_resource file size tests when limits are strict (GH-145579)
encukou
[Python-checkins] gh-146609: Add colour to `timeit` CLI output (#146610)
hugovk
[Python-checkins] gh-146292: Add colour to `http.server` logs (GH-146293)
ambv
[Python-checkins] [3.11] gh-145986: Avoid unbound C recursion in `conv_content_model` in `pyexpat.c` (CVE 2026-4224) (GH-145987) (#146000)
pablogsal
[Python-checkins] [3.10] gh-145986: Avoid unbound C recursion in `conv_content_model` in `pyexpat.c` (CVE 2026-4224) (GH-145987) (#146002)
pablogsal
[Python-checkins] [3.10] gh-146083: Upgrade bundled Expat to 2.7.5 (GH-146085) (#146608)
pablogsal
[Python-checkins] [3.11] gh-146083: Upgrade bundled Expat to 2.7.5 (GH-146085) (#146607)
pablogsal
[Python-checkins] gh-148235: remove duplicate uops `_LOAD_CONST_UNDER_INLINE(_BORROW)` in JIT (GH-148236)
Fidget-Spinner
[Python-checkins] gh-145921: Add "_DuringGC" functions for tp_traverse (GH-145925)
encukou
[Python-checkins] gh-146458: Fix REPL height and width tracking on resize (#146459)
vstinner
[Python-checkins] [3.14] gh-146458: Fix REPL height and width tracking on resize (GH-146459) (#148232)
vstinner
[Python-checkins] Python 3.13.13
Yhg1s
[Python-checkins] gh-145846: Fix memory leak in _lsprof clearEntries() context chain (#145847)
vstinner
[Python-checkins] gh-142518: add thread safety annotations for tuple C-API (#148012)
kumaraditya303
[Python-checkins] [3.13] GH-146128: Remove the buggy AArch64 "33rx" relocation (#146263) (#148199)
Yhg1s
[Python-checkins] gh-95004: specialize access to enums and fix scaling on free-threading (#148184)
kumaraditya303
[Python-checkins] gh-146333: Fix quadratic regex backtracking in configparser option parsing (GH-146399)
encukou
[Python-checkins] gh-148014: Accept a function name in -X presite option (#148015)
vstinner
[Python-checkins] gh-146547: Use lazy imports in ctypes (GH-146548)
encukou
[Python-checkins] gh-130273: Fix traceback color output with unicode characters (GH-142529)
ambv
[Python-checkins] [3.14] gh-146121: Clarify security model of pkgutil.getdata (GH-148197) (GH-148206)
encukou
[Python-checkins] [3.14] GH-146128: Remove the buggy AArch64 "33rx" relocation (GH-146263) (#148198)
hugovk
[Python-checkins] [3.13] gh-146121: Clarify security model of pkgutil.getdata; revert checks (GH-148197) (#148205)
Yhg1s
[Python-checkins] [3.13] gh-146613: Fix re-entrant use-after-free in `itertools._grouper` (GH-147962) (#148011)
Yhg1s
[Python-checkins] [3.13] gh-144984: Fix crash in Expat's `ExternalEntityParserCreate` error paths (GH-144992) (#146142)
Yhg1s
[Python-checkins] gh-146121: Clarify security model of pkgutil.getdata; revert checks (GH-148197)
encukou
[Python-checkins] GH-145762: Fix test_ci_fuzz_stdlib for source archive builds (#145778)
hugovk
[Python-checkins] gh-101178: Fix UB in `binascii.b2a_ascii85` (#148166)
StanFromIreland
[Python-checkins] gh-146636: abi3t: Define Py_GIL_DISABLED but do not use it (GH-148142)
encukou
[Python-checkins] [3.13] gh-144503: Pass sys.argv to forkserver as real argv elements (GH-148194) (#148196)
gpshead
[Python-checkins] [3.14] gh-144503: Pass sys.argv to forkserver as real argv elements (GH-148194) (#148195)
gpshead
[Python-checkins] gh-144503: Pass sys.argv to forkserver as real argv elements (GH-148194)
gpshead
[Python-checkins] GH-146128: Remove the buggy AArch64 "33rx" relocation (#146263)
hugovk
[Python-checkins] gh-112632: Add optional keyword-only argument `expand` to `pprint` (#136964)
hugovk
[Python-checkins] Note out-of-date obmalloc comments (#148149)
tim-one
[Python-checkins] [3.10] gh-137586: Open external osascript program with absolute path (GH-137584) (#148177)
hugovk
[Python-checkins] [3.11] gh-137586: Open external osascript program with absolute path (GH-137584) (#148176)
hugovk
[Python-checkins] [3.12] gh-137586: Open external osascript program with absolute path (GH-137584) (#148175)
hugovk
[Python-checkins] [3.14] gh-137586: Open external osascript program with absolute path (GH-137584) (#148173)
hugovk
[Python-checkins] [3.13] gh-137586: Open external osascript program with absolute path (GH-137584) (#148174)
hugovk
[Python-checkins] gh-145844: Update WASI SDK from 30 to 32 (#145859)
brettcannon
[Python-checkins] gh-73613: clarify padding= docs in for base64 & binascii modules (GH-148183)
gpshead
[Python-checkins] gh-148110: Resolve lazy import filter names for relative imports (#148111)
pablogsal
[Python-checkins] gh-137586: Open external osascript program with absolute path (GH-137584)
gpshead
[Python-checkins] gh-148072: Cache pickle.dumps/loads per interpreter in XIData (GH-148125)
ZeroIntensity
[Python-checkins] [3.14] gh-146613: Fix re-entrant use-after-free in `itertools._grouper` (GH-147962) (#148010)
hugovk
[Python-checkins] gh-130472: Remove readline-only hacks from PyREPL completions (#148161)
pablogsal
[Python-checkins] gh-140279: Stale workflow needs 'actions: write' to update its own cache (#148165)
hugovk
[Python-checkins] gh-100239: Propagate type info through _BINARY_OP_EXTEND in tier 2 (GH-148146)
Fidget-Spinner
[Python-checkins] Add Stan to docs config reviewers (#148164)
hugovk
[Python-checkins] [3.14] gh-148157: Check for `_PyPegen_add_type_comment_to_arg` fail in `_PyPegen_name_default_pair` (GH-148158) (#148162)
StanFromIreland
[Python-checkins] [3.13] gh-148157: Check for `_PyPegen_add_type_comment_to_arg` fail in `_PyPegen_name_default_pair` (GH-148158) (#148163)
StanFromIreland
[Python-checkins] gh-148119: Refactor `get_type_attr_as_size` to improve error handling in `structseq.c` (#148120)
kumaraditya303
[Python-checkins] gh-148157: Check for `_PyPegen_add_type_comment_to_arg` fail in `_PyPegen_name_default_pair` (#148158)
StanFromIreland
[Python-checkins] [3.13] Docs: Update "Installing Python modules" (GH-146249) (#148160)
hugovk
[Python-checkins] [3.14] Docs: Update "Installing Python modules" (GH-146249) (#148159)
hugovk
[Python-checkins] Docs: Update "Installing Python modules" (#146249)
hugovk
[Python-checkins] gh-148153: Do not use assert for parameter validation in base64 (GH-148154)
serhiy-storchaka
[Python-checkins] [3.13] gh-144418: Increase Android testbed emulator RAM to 4 GB (GH-148054) (#148151)
freakboy3742
[Python-checkins] [3.14] gh-144418: Increase Android testbed emulator RAM to 4 GB (GH-148054) (#148150)
freakboy3742
[Python-checkins] gh-144418: Increase Android testbed emulator RAM to 4 GB (#148054)
freakboy3742
[Python-checkins] [3.14] gh-148144: Initialize visited on copied interpreter frames (GH-148143) (#148147)
pablogsal
[Python-checkins] [3.13] gh-146541: Allow building the Android testbed for 32-bit targets (GH-146542) (#148107)
freakboy3742
[Python-checkins] gh-148144: Initialize visited on copied interpreter frames (#148143)
pablogsal
[Python-checkins] [3.10] gh-145098: Add `permissions: {}` to all workflows (GH-148126) (#148139)
hugovk
[Python-checkins] [3.12] gh-145098: Use `macos-15-intel` instead of unstable `macos-26-intel` in `{jit,tail-call}.yml` (GH-148126) (#148137)
hugovk
[Python-checkins] [3.11] gh-145098: Use `macos-15-intel` instead of unstable `macos-26-…intel` in `{jit,tail-call}.yml` (GH-148126) (#148138)
hugovk
[Python-checkins] [3.13] gh-145098: Use `macos-15-intel` instead of unstable `macos-26-intel` in `{jit,tail-call}.yml` (GH-148126) (#148136)
hugovk
[Python-checkins] [3.14] gh-145098: Use `macos-15-intel` instead of unstable `macos-26-intel` in `{jit,tail-call}.yml` (GH-148126) (#148135)
hugovk
[Python-checkins] gh-145098: Use `macos-15-intel` instead of unstable `macos-26-intel` in `{jit,tail-call}.yml` (#148126)
hugovk
[Python-checkins] gh-140870: PyREPL auto-complete module attributes in import statements (#140871)
pablogsal
[Python-checkins] [3.11] gh-94632: document the subprocess need for extra_groups=() with user= (GH-148129) (#148133)
pablogsal
[Python-checkins] gh-69605: Add math.integer to PyREPL module completer hardcoded list (#144811)
pablogsal
[Python-checkins] [3.10] gh-94632: document the subprocess need for extra_groups=() with user= (GH-148129) (#148134)
pablogsal
[Python-checkins] Silence `unused-variable` warnings in `optimizer_cases.c.h` (#148127)
StanFromIreland
[Python-checkins] [3.13] gh-94632: document the subprocess need for extra_groups=() with user= (GH-148129) (#148131)
gpshead
[Python-checkins] [3.14] gh-94632: document the subprocess need for extra_groups=() with user= (GH-148129) (#148130)
gpshead
[Python-checkins] gh-94632: document the subprocess need for extra_groups=() with user= (GH-148129)
gpshead
[Python-checkins] gh-144319: Fix huge page leak in datastack chunk allocator (#147963)
pablogsal
[Python-checkins] GH-139922: add interpreter types to InternalDocs/interpreter.md (GH-148035)
Fidget-Spinner
[Python-checkins] [3.12] Add `permissions: {}` to all reusable workflows (#148114) (#148122)
ezio-melotti
[Python-checkins] [3.11] Add `permissions: {}` to all reusable workflows (#148114) (#148123)
hugovk
[Python-checkins] gh-130472: Integrate fancycompleter with the new repl, to get colored tab completions (#130473)
pablogsal
[Python-checkins] [3.13] Add `permissions: {}` to all reusable workflows (#148114) (#148116)
ezio-melotti
[Python-checkins] [3.14] Add `permissions: {}` to all reusable workflows (#148114) (#148115)
ezio-melotti
[Python-checkins] Add `permissions: {}` to all reusable workflows (#148114)
ezio-melotti
[Python-checkins] gh-142927: Show self time in flamegraph tooltip (#147706)
pablogsal
[Python-checkins] gh-145000: Find correct merge base in `reusable-check-html-ids.yml` workflow (#147975)
StanFromIreland
[Python-checkins] gh-148083: Prevent constant folding when lhs is container types (gh-148090)
corona10
[Python-checkins] gh-73613: Support Base32 and Base64 without padding (GH-147974)
serhiy-storchaka
[Python-checkins] [3.13] Docs: Standardize documentation authors (GH-148102) (#148106)
StanFromIreland
[Python-checkins] [3.14] Docs: Standardize documentation authors (GH-148102) (#148104)
StanFromIreland
[Python-checkins] Docs: Standardize documentation authors (#148102)
StanFromIreland
[Python-checkins] gh-146527: Heap-allocate gc_stats to avoid bloating PyInterpreterState (#148057)
pablogsal
[Python-checkins] [3.14] Docs: Fix a typo in the 'Non-ASCII characters in names' section (GH-148043) (#148099)
StanFromIreland
[Python-checkins] Docs: Fix a typo in the 'Non-ASCII characters in names' section (#148043)
StanFromIreland
[Python-checkins] [3.14] Regex HOWTO: invalid string literals result in `SyntaxWarning` (GH-148092) (#148097)
hugovk
[Python-checkins] [3.13] Regex HOWTO: invalid string literals result in `SyntaxWarning` (GH-148092) (#148098)
hugovk
[Python-checkins] gh-148074: Fix `typeobject.c` missing error return (#148075)
kumaraditya303
[Python-checkins] Regex HOWTO: invalid string literals result in `SyntaxWarning` (#148092)
hugovk
[Python-checkins] [3.13] gh-145883: Fix two heap-buffer-overflows in `_zoneinfo` (GH-145885) (#148086)
StanFromIreland
[Python-checkins] [3.14] gh-145883: Fix two heap-buffer-overflows in `_zoneinfo` (GH-145885) (#148087)
StanFromIreland
[Python-checkins] [3.14] gh-148074: Fix `typeobject.c` missing error return (GH-148075) (#148095)
kumaraditya303
[Python-checkins] gh-145883: Fix two heap-buffer-overflows in `_zoneinfo` (#145885)
StanFromIreland
[Python-checkins] gh-148083: Constant-fold _CONTAINS_OP_SET for frozenset (gh-148084)
corona10
[Python-checkins] gh-146073: Revert "gh-146073: Add fitness/exit quality mechanism for JIT trace frontend (GH-147966)" (#148082)
Fidget-Spinner
[Python-checkins] gh-148067: Fix typo in asyncio event loop docs: 'signals' -> 'signal' (#148073)
kumaraditya303
[Python-checkins] gh-148078: Fix uses of sym_is_not_null in JIT optimizer (GH-148079)
Fidget-Spinner
[Python-checkins] [3.13] gh-145098: Use `macos-15-intel` instead of unstable `macos-26-intel` (GH-148038) (#148077)
hugovk
[Python-checkins] [3.14] gh-145098: Use `macos-15-intel` instead of unstable `macos-26-intel` (GH-148038) (#148076)
hugovk
[Python-checkins] gh-131798: split recursion check to _CHECK_RECURSION_LIMIT and combine checks (GH-148070)
Fidget-Spinner
[Python-checkins] [3.14] gh-143394: Skip pyrepl test_no_newline() basic REPL if readline is missing (GH-147973) (#148005)
vstinner
[Python-checkins] gh-148016: Improve "Leading padding not allowed" error in Base32 and Base64 decoders (GH-148017)
serhiy-storchaka
[Python-checkins] gh-148029: Fix error message for invalid number of Base32 characters (GH-148030)
serhiy-storchaka
[Python-checkins] gh-131798: relax GUARD_CALLABLE checks for self type checks (#148069)
kumaraditya303
[Python-checkins] [3.13] gh-146450: Normalise feature set of Android build script with other platform build scripts (GH-146451) (#148066)
freakboy3742
[Python-checkins] [3.14] gh-146450: Normalise feature set of Android build script with other platform build scripts (GH-146451) (#148065)
freakboy3742
[Python-checkins] [3.14] gh-146541: Allow building the Android testbed for 32-bit targets (GH-146542) (#148064)
freakboy3742
[Python-checkins] gh-131798: JIT inline function addresses of builtin methods (#146906)
kumaraditya303
[Python-checkins] gh-146450: Normalise feature set of Android build script with other platform build scripts (#146451)
freakboy3742
[Python-checkins] gh-146541: Allow building the Android testbed for 32-bit targets (#146542)
freakboy3742
[Python-checkins] [3.11] gh-143930: Tweak the exception message and increase test coverage (GH-146476) (GH-148045) (GH-148051) (GH-148052)
ambv
[Python-checkins] [3.10] gh-143930: Tweak the exception message and increase test coverage (GH-146476) (GH-148045) (GH-148051) (GH-148053)
ambv
[Python-checkins] [3.12] gh-143930: Tweak the exception message and increase test coverage (GH-146476) (GH-148045) (GH-148051)
ambv
[Python-checkins] GH-146210: Fix building the jit stencils on Windows when the interpreter is built with a different clang version (#146338)
savannahostrowski
[Python-checkins] [3.14] gh-126676: Expand argparse docs for type=bool with warning and alternatives (GH-146435) (#148048)
savannahostrowski
[Python-checkins] [3.13] gh-126676: Expand argparse docs for type=bool with warning and alternatives (GH-146435) (#148049)
savannahostrowski
[Python-checkins] gh-126676: Expand argparse docs for type=bool with warning and alternatives (#146435)
savannahostrowski
[Python-checkins] [3.13] gh-143930: Tweak the exception message and increase test coverage (GH-146476) (GH-148045)
ambv
[Python-checkins] [3.14] gh-143930: Tweak the exception message and increase test coverage (GH-146476) (GH-148042)
ambv
[Python-checkins] [3.10] Remove MSI build from security-only branch (GH-148007) (GH-148008) (#148009)
hugovk
[Python-checkins] gh-145098: Use `macos-15-intel` instead of unstable `macos-26-intel` (#148038)
hugovk
[Python-checkins] gh-146073: Add fitness/exit quality mechanism for JIT trace frontend (GH-147966)
Fidget-Spinner
[Python-checkins] [3.13] gh-125895: Fix static asset location for `sphinx-notfound-page` (GH-147984) (#148041)
StanFromIreland
[Python-checkins] [3.14] gh-125895: Fix static asset location for `sphinx-notfound-page` (GH-147984) (#148040)
StanFromIreland
[Python-checkins] gh-143930: Tweak the exception message and increase test coverage (GH-146476)
ambv
[Python-checkins] gh-125895: Fix static asset location for `sphinx-notfound-page` (#147984)
StanFromIreland
[Python-checkins] [3.14] gh-148022: Add threat model to remote debugging docs (GH-148024) (#148039)
sethmlarson
[Python-checkins] gh-148022: Add threat model to remote debugging docs (#148024)
sethmlarson
[Python-checkins] [3.13] gh-143394: Skip pyrepl test_no_newline() basic REPL if readline is missing (GH-147973) (#148006)
vstinner
Earlier messages
Later messages