Skip to content

Commit bdfd74f

Browse files
committed
Merge branch 'main'
2 parents a96e128 + 9a83c02 commit bdfd74f

File tree

758 files changed

+36743
-26558
lines changed

Some content is hidden

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

758 files changed

+36743
-26558
lines changed

.github/CODEOWNERS

Lines changed: 49 additions & 37 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 @webknjaz
67-
Tools/build/compute-changes.py @AA-Turner @hugovk @webknjaz
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

@@ -130,7 +132,9 @@ Tools/c-analyzer/ @ericsnowcurrently
130132
Tools/check-c-api-docs/ @ZeroIntensity
131133

132134
# Fuzzing
133-
Modules/_xxtestfuzz/ @ammaraskar
135+
Modules/_xxtestfuzz/ @python/fuzzers
136+
Lib/test/test_xxtestfuzz.py @python/fuzzers
137+
.github/workflows/reusable-cifuzz.yml @python/fuzzers
134138

135139
# Limited C API & Stable ABI
136140
Doc/c-api/stable.rst @encukou
@@ -258,40 +262,46 @@ Include/pyhash.h @gpshead @picnixz
258262
Python/pyhash.c @gpshead @picnixz
259263

260264
# The import system (including importlib)
261-
**/*import* @brettcannon @ericsnowcurrently @ncoghlan @warsaw
262-
Python/import.c @brettcannon @ericsnowcurrently @ncoghlan @warsaw @kumaraditya303
265+
**/*import* @brettcannon @ericsnowcurrently @ncoghlan @warsaw @FFY00
266+
Python/import.c @brettcannon @ericsnowcurrently @ncoghlan @warsaw @FFY00 @kumaraditya303
263267
**/*freeze* @ericsnowcurrently
264268
**/*frozen* @ericsnowcurrently
265269
**/*modsupport* @ericsnowcurrently
266-
**/*modulefinder* @ericsnowcurrently
270+
**/*modulefinder* @ericsnowcurrently @FFY00
267271
**/*moduleobject* @ericsnowcurrently
268272
**/*multiphase* @ericsnowcurrently
269-
**/*pkgutil* @ericsnowcurrently
273+
**/*pkgutil* @ericsnowcurrently @FFY00
270274
**/*pythonrun* @ericsnowcurrently
271-
**/*runpy* @ericsnowcurrently
275+
**/*runpy* @ericsnowcurrently @FFY00
272276
**/*singlephase* @ericsnowcurrently
273277
Doc/c-api/module.rst @ericsnowcurrently
274278
Lib/test/test_module/ @ericsnowcurrently
275-
Python/dynload_*.c @ericsnowcurrently
279+
Python/dynload_*.c @ericsnowcurrently @FFY00
276280

277281
# Initialisation
278-
**/*initconfig* @ericsnowcurrently
279-
**/*pathconfig* @ericsnowcurrently
280-
**/*preconfig* @ericsnowcurrently
282+
**/*initconfig* @ericsnowcurrently @FFY00
283+
**/*pathconfig* @ericsnowcurrently @FFY00
284+
**/*preconfig* @ericsnowcurrently @FFY00
281285
Doc/library/sys_path_init.rst @FFY00
282286
Doc/c-api/init_config.rst @FFY00
283287

284288
# Interpreter main program
285-
Modules/main.c @ericsnowcurrently
286-
Programs/_bootstrap_python.c @ericsnowcurrently
287-
Programs/python.c @ericsnowcurrently
289+
Modules/main.c @ericsnowcurrently @FFY00
290+
Programs/_bootstrap_python.c @ericsnowcurrently @FFY00
291+
Programs/python.c @ericsnowcurrently @FFY00
288292

289293
# JIT
294+
.github/workflows/jit.yml @savannahostrowski
290295
Include/internal/pycore_jit.h @brandtbucher @savannahostrowski @diegorusso
291296
Python/jit.c @brandtbucher @savannahostrowski @diegorusso
292297
Tools/jit/ @brandtbucher @savannahostrowski @diegorusso
293298
InternalDocs/jit.md @brandtbucher @savannahostrowski @diegorusso @AA-Turner
294299

300+
# Lazy imports (PEP 810)
301+
Objects/lazyimportobject.c @yhg1s @DinoV @pablogsal
302+
Include/internal/pycore_lazyimportobject.h @yhg1s @DinoV @pablogsal
303+
Lib/test/test_lazy_import @yhg1s @DinoV @pablogsal
304+
295305
# Micro-op / μop / Tier 2 Optimiser
296306
Python/optimizer.c @markshannon @Fidget-Spinner
297307
Python/optimizer_analysis.c @markshannon @tomasr8 @Fidget-Spinner @savannahostrowski
@@ -308,8 +318,8 @@ Tools/peg_generator/ @pablogsal @lysnikolaou
308318

309319
# Runtime state/lifecycle
310320
**/*gil* @ericsnowcurrently
311-
**/*pylifecycle* @ericsnowcurrently @ZeroIntensity
312-
**/*pystate* @ericsnowcurrently @ZeroIntensity
321+
**/*pylifecycle* @ericsnowcurrently @ZeroIntensity @FFY00
322+
**/*pystate* @ericsnowcurrently @ZeroIntensity @FFY00
313323
Include/internal/pycore_*_init.h @ericsnowcurrently
314324
Include/internal/pycore_*_state.h @ericsnowcurrently
315325
Include/internal/pycore_atexit.h @ericsnowcurrently
@@ -417,18 +427,19 @@ Lib/dataclasses.py @ericvsmith
417427
Lib/test/test_dataclasses/ @ericvsmith
418428

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

433444
# Dbm
434445
Doc/library/dbm.rst @corona10 @erlend-aasland @serhiy-storchaka
@@ -467,8 +478,9 @@ Lib/test/test_functools.py @rhettinger
467478
Modules/_functoolsmodule.c @rhettinger
468479

469480
# Garbage collector
470-
Modules/gcmodule.c @pablogsal
471-
Doc/library/gc.rst @pablogsal
481+
Modules/gcmodule.c @pablogsal
482+
Doc/library/gc.rst @pablogsal
483+
InternalDocs/garbage_collector.md @pablogsal
472484

473485
# Gettext
474486
Doc/library/gettext.rst @tomasr8
@@ -495,13 +507,13 @@ Lib/idlelib/ @terryjreedy
495507
Lib/turtledemo/ @terryjreedy
496508

497509
# importlib.metadata
498-
Doc/library/importlib.metadata.rst @jaraco @warsaw
499-
Lib/importlib/metadata/ @jaraco @warsaw
500-
Lib/test/test_importlib/metadata/ @jaraco @warsaw
510+
Doc/library/importlib.metadata.rst @jaraco @warsaw @FFY00
511+
Lib/importlib/metadata/ @jaraco @warsaw @FFY00
512+
Lib/test/test_importlib/metadata/ @jaraco @warsaw @FFY00
501513

502514
# importlib.resources
503-
Doc/library/importlib.resources.abc.rst @jaraco @warsaw
504-
Doc/library/importlib.resources.rst @jaraco @warsaw
515+
Doc/library/importlib.resources.abc.rst @jaraco @warsaw @FFY00
516+
Doc/library/importlib.resources.rst @jaraco @warsaw @FFY00
505517
Lib/importlib/resources/ @jaraco @warsaw @FFY00
506518
Lib/test/test_importlib/resources/ @jaraco @warsaw @FFY00
507519

.github/ISSUE_TEMPLATE/documentation.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ body:
88
> [!NOTE]
99
> Trivial changes (for example typos) don’t require an issue before opening a PR.
1010
- type: textarea
11+
id: description
1112
attributes:
1213
label: "Documentation"
13-
description: "A clear and concise description of the issue."
14+
description: "A clear and concise description of the issue. Include a link to the page."
1415
validations:
1516
required: true

.github/actionlint.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
self-hosted-runner:
2-
# Pending https://github.com/rhysd/actionlint/pull/615
3-
labels: ["windows-2025-vs2026"]
4-
51
config-variables: null
62

73
paths:

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ updates:
1212
update-types:
1313
- "version-update:semver-minor"
1414
- "version-update:semver-patch"
15+
groups:
16+
actions:
17+
patterns:
18+
- "*"
1519
cooldown:
1620
# https://blog.yossarian.net/2025/11/21/We-should-all-be-using-dependency-cooldowns
1721
# Cooldowns protect against supply chain attacks by avoiding the

0 commit comments

Comments
 (0)