Skip to content

Commit 3b4ff30

Browse files
Merge branch 'main' into audit-links
2 parents 74768c3 + c9b96b1 commit 3b4ff30

File tree

1,260 files changed

+107088
-46475
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,260 files changed

+107088
-46475
lines changed

.gitattributes

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,19 @@ Include/opcode.h generated
8383
Include/opcode_ids.h generated
8484
Include/token.h generated
8585
Lib/_opcode_metadata.py generated
86-
Lib/keyword.py generated
8786
Lib/idlelib/help.html generated
87+
Lib/keyword.py generated
88+
Lib/pydoc_data/topics.py generated
89+
Lib/pydoc_data/module_docs.py generated
8890
Lib/test/certdata/*.pem generated
8991
Lib/test/certdata/*.0 generated
9092
Lib/test/levenshtein_examples.json generated
9193
Lib/test/test_stable_abi_ctypes.py generated
9294
Lib/test/test_zoneinfo/data/*.json generated
9395
Lib/token.py generated
9496
Misc/sbom.spdx.json generated
97+
Modules/_testinternalcapi/test_cases.c.h generated
98+
Modules/_testinternalcapi/test_targets.h generated
9599
Objects/typeslots.inc generated
96100
PC/python3dll.c generated
97101
Parser/parser.c generated
@@ -102,6 +106,7 @@ Python/executor_cases.c.h generated
102106
Python/generated_cases.c.h generated
103107
Python/optimizer_cases.c.h generated
104108
Python/opcode_targets.h generated
109+
Python/record_functions.c.h generated
105110
Python/stdlib_module_names.h generated
106111
Tools/peg_generator/pegen/grammar_parser.py generated
107112
aclocal.m4 generated

.github/CODEOWNERS

Lines changed: 37 additions & 23 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
@@ -283,16 +289,22 @@ Programs/_bootstrap_python.c @ericsnowcurrently
283289
Programs/python.c @ericsnowcurrently
284290

285291
# JIT
292+
.github/workflows/jit.yml @savannahostrowski
286293
Include/internal/pycore_jit.h @brandtbucher @savannahostrowski @diegorusso
287294
Python/jit.c @brandtbucher @savannahostrowski @diegorusso
288295
Tools/jit/ @brandtbucher @savannahostrowski @diegorusso
289296
InternalDocs/jit.md @brandtbucher @savannahostrowski @diegorusso @AA-Turner
290297

298+
# Lazy imports (PEP 810)
299+
Objects/lazyimportobject.c @yhg1s @DinoV @pablogsal
300+
Include/internal/pycore_lazyimportobject.h @yhg1s @DinoV @pablogsal
301+
Lib/test/test_lazy_import @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
@@ -413,18 +425,19 @@ Lib/dataclasses.py @ericvsmith
413425
Lib/test/test_dataclasses/ @ericvsmith
414426

415427
# Dates and times
416-
Doc/**/*time.rst @pganssle @abalkin
417-
Doc/library/zoneinfo.rst @pganssle
418-
Include/datetime.h @pganssle @abalkin
419-
Include/internal/pycore_time.h @pganssle @abalkin
420-
Lib/test/test_zoneinfo/ @pganssle
421-
Lib/zoneinfo/ @pganssle
422-
Lib/*time.py @pganssle @abalkin
423-
Lib/test/datetimetester.py @pganssle @abalkin
424-
Lib/test/test_*time.py @pganssle @abalkin
425-
Modules/*zoneinfo* @pganssle
426-
Modules/*time* @pganssle @abalkin
427-
Python/pytime.c @pganssle @abalkin
428+
Doc/**/*time.rst @pganssle @abalkin @StanFromIreland
429+
Doc/library/datetime-* @pganssle @StanFromIreland
430+
Doc/library/zoneinfo.rst @pganssle @StanFromIreland
431+
Include/datetime.h @pganssle @abalkin @StanFromIreland
432+
Include/internal/pycore_time.h @pganssle @abalkin @StanFromIreland
433+
Lib/test/test_zoneinfo/ @pganssle @StanFromIreland
434+
Lib/zoneinfo/ @pganssle @StanFromIreland
435+
Lib/*time.py @pganssle @abalkin @StanFromIreland
436+
Lib/test/datetimetester.py @pganssle @abalkin @StanFromIreland
437+
Lib/test/test_*time.py @pganssle @abalkin @StanFromIreland
438+
Modules/*zoneinfo* @pganssle @StanFromIreland
439+
Modules/*time* @pganssle @abalkin @StanFromIreland
440+
Python/pytime.c @pganssle @abalkin @StanFromIreland
428441

429442
# Dbm
430443
Doc/library/dbm.rst @corona10 @erlend-aasland @serhiy-storchaka
@@ -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)