Skip to content

Commit 4d48f3b

Browse files
authored
Merge branch 'main' into pa/importlib-metadata-api
2 parents 561328d + 646bd86 commit 4d48f3b

File tree

1,130 files changed

+79554
-34468
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,130 files changed

+79554
-34468
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ Lib/test/test_stable_abi_ctypes.py generated
9494
Lib/test/test_zoneinfo/data/*.json generated
9595
Lib/token.py generated
9696
Misc/sbom.spdx.json generated
97+
Modules/_testinternalcapi/test_cases.c.h generated
98+
Modules/_testinternalcapi/test_targets.h generated
9799
Objects/typeslots.inc generated
98100
PC/python3dll.c generated
99101
Parser/parser.c generated
@@ -104,6 +106,7 @@ Python/executor_cases.c.h generated
104106
Python/generated_cases.c.h generated
105107
Python/optimizer_cases.c.h generated
106108
Python/opcode_targets.h generated
109+
Python/record_functions.c.h generated
107110
Python/stdlib_module_names.h generated
108111
Tools/peg_generator/pegen/grammar_parser.py generated
109112
aclocal.m4 generated

.github/CODEOWNERS

Lines changed: 25 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,10 @@
6363
.azure-pipelines/ @AA-Turner
6464

6565
# GitHub & related scripts
66-
.github/ @ezio-melotti @hugovk @AA-Turner
67-
Tools/build/compute-changes.py @AA-Turner
68-
Tools/build/verify_ensurepip_wheels.py @AA-Turner @pfmoore @pradyunsg
66+
.github/ @ezio-melotti @hugovk @AA-Turner @webknjaz
67+
Tools/build/compute-changes.py @AA-Turner @hugovk @webknjaz
68+
Lib/test/test_tools/test_compute_changes.py @AA-Turner @hugovk @webknjaz
69+
Tools/build/verify_ensurepip_wheels.py @AA-Turner @pfmoore @pradyunsg
6970

7071
# Pre-commit
7172
.pre-commit-config.yaml @hugovk
@@ -110,6 +111,7 @@ Doc/tools/ @AA-Turner @hugovk
110111
.readthedocs.yml @AA-Turner
111112

112113
# Sections
114+
Doc/c-api/ @ZeroIntensity
113115
Doc/reference/ @willingc @AA-Turner
114116
Doc/whatsnew/ @AA-Turner
115117

@@ -143,6 +145,9 @@ Misc/externals.spdx.json @sethmlarson
143145
Misc/sbom.spdx.json @sethmlarson
144146
Tools/build/generate_sbom.py @sethmlarson
145147

148+
# ABI check
149+
Misc/libabigail.abignore @encukou
150+
146151

147152
# ----------------------------------------------------------------------------
148153
# Platform Support
@@ -173,9 +178,10 @@ Tools/wasm/config.site-wasm32-emscripten @freakboy3742 @emmatyping
173178
Tools/wasm/emscripten @freakboy3742 @emmatyping
174179

175180
# WebAssembly (WASI)
176-
Tools/wasm/wasi-env @brettcannon @emmatyping
177-
Tools/wasm/wasi.py @brettcannon @emmatyping
178-
Tools/wasm/wasi @brettcannon @emmatyping
181+
Platforms/WASI @brettcannon @emmatyping @savannahostrowski
182+
Tools/wasm/wasi-env @brettcannon @emmatyping @savannahostrowski
183+
Tools/wasm/wasi.py @brettcannon @emmatyping @savannahostrowski
184+
Tools/wasm/wasi @brettcannon @emmatyping @savannahostrowski
179185

180186
# Windows
181187
PC/ @python/windows-team
@@ -288,11 +294,17 @@ Python/jit.c @brandtbucher @savannahostrowski @diegorusso
288294
Tools/jit/ @brandtbucher @savannahostrowski @diegorusso
289295
InternalDocs/jit.md @brandtbucher @savannahostrowski @diegorusso @AA-Turner
290296

297+
# Lazy imports (PEP 810)
298+
Objects/lazyimportobject.c @yhg1s @DinoV @pablogsal
299+
Include/internal/pycore_lazyimportobject.h @yhg1s @DinoV @pablogsal
300+
Lib/test/test_import/test_lazy_imports.py @yhg1s @DinoV @pablogsal
301+
Lib/test/test_import/data/lazy_imports/ @yhg1s @DinoV @pablogsal
302+
291303
# Micro-op / μop / Tier 2 Optimiser
292304
Python/optimizer.c @markshannon @Fidget-Spinner
293-
Python/optimizer_analysis.c @markshannon @tomasr8 @Fidget-Spinner
294-
Python/optimizer_bytecodes.c @markshannon @tomasr8 @Fidget-Spinner
295-
Python/optimizer_symbols.c @markshannon @tomasr8 @Fidget-Spinner
305+
Python/optimizer_analysis.c @markshannon @tomasr8 @Fidget-Spinner @savannahostrowski
306+
Python/optimizer_bytecodes.c @markshannon @tomasr8 @Fidget-Spinner @savannahostrowski
307+
Python/optimizer_symbols.c @markshannon @tomasr8 @Fidget-Spinner @savannahostrowski
296308

297309
# Parser, Lexer, and Grammar
298310
Grammar/python.gram @pablogsal @lysnikolaou
@@ -414,6 +426,7 @@ Lib/test/test_dataclasses/ @ericvsmith
414426

415427
# Dates and times
416428
Doc/**/*time.rst @pganssle @abalkin
429+
Doc/library/datetime-* @pganssle
417430
Doc/library/zoneinfo.rst @pganssle
418431
Include/datetime.h @pganssle @abalkin
419432
Include/internal/pycore_time.h @pganssle @abalkin
@@ -463,8 +476,9 @@ Lib/test/test_functools.py @rhettinger
463476
Modules/_functoolsmodule.c @rhettinger
464477

465478
# Garbage collector
466-
Modules/gcmodule.c @pablogsal
467-
Doc/library/gc.rst @pablogsal
479+
Modules/gcmodule.c @pablogsal
480+
Doc/library/gc.rst @pablogsal
481+
InternalDocs/garbage_collector.md @pablogsal
468482

469483
# Gettext
470484
Doc/library/gettext.rst @tomasr8

.github/ISSUE_TEMPLATE/documentation.md

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Documentation
2+
description: Report a problem with the documentation
3+
labels: ["docs"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
> [!NOTE]
9+
> Trivial changes (for example typos) don’t require an issue before opening a PR.
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: "Documentation"
14+
description: "A clear and concise description of the issue. Include a link to the page."
15+
validations:
16+
required: true

.github/actionlint.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
self-hosted-runner:
2-
# Pending https://github.com/rhysd/actionlint/issues/533
3-
# and https://github.com/rhysd/actionlint/issues/571
4-
labels: ["windows-11-arm", "macos-15-intel"]
2+
# Pending https://github.com/rhysd/actionlint/pull/615
3+
labels: ["windows-2025-vs2026"]
54

65
config-variables: null
76

.github/workflows/add-issue-header.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
issues: write
2121
timeout-minutes: 5
2222
steps:
23-
- uses: actions/github-script@v7
23+
- uses: actions/github-script@v8
2424
with:
2525
# language=JavaScript
2626
script: |

0 commit comments

Comments
 (0)