Skip to content

Commit 3ec6ef0

Browse files
committed
Merge branch 'main' into parse_vector
2 parents 83c4801 + c1d7768 commit 3ec6ef0

File tree

1,060 files changed

+53475
-30084
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,060 files changed

+53475
-30084
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ Python/executor_cases.c.h generated
106106
Python/generated_cases.c.h generated
107107
Python/optimizer_cases.c.h generated
108108
Python/opcode_targets.h generated
109+
Python/record_functions.c.h generated
109110
Python/stdlib_module_names.h generated
110111
Tools/peg_generator/pegen/grammar_parser.py generated
111112
aclocal.m4 generated

.github/CODEOWNERS

Lines changed: 46 additions & 36 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

@@ -258,40 +260,46 @@ Include/pyhash.h @gpshead @picnixz
258260
Python/pyhash.c @gpshead @picnixz
259261

260262
# The import system (including importlib)
261-
**/*import* @brettcannon @ericsnowcurrently @ncoghlan @warsaw
262-
Python/import.c @brettcannon @ericsnowcurrently @ncoghlan @warsaw @kumaraditya303
263+
**/*import* @brettcannon @ericsnowcurrently @ncoghlan @warsaw @FFY00
264+
Python/import.c @brettcannon @ericsnowcurrently @ncoghlan @warsaw @FFY00 @kumaraditya303
263265
**/*freeze* @ericsnowcurrently
264266
**/*frozen* @ericsnowcurrently
265267
**/*modsupport* @ericsnowcurrently
266-
**/*modulefinder* @ericsnowcurrently
268+
**/*modulefinder* @ericsnowcurrently @FFY00
267269
**/*moduleobject* @ericsnowcurrently
268270
**/*multiphase* @ericsnowcurrently
269-
**/*pkgutil* @ericsnowcurrently
271+
**/*pkgutil* @ericsnowcurrently @FFY00
270272
**/*pythonrun* @ericsnowcurrently
271-
**/*runpy* @ericsnowcurrently
273+
**/*runpy* @ericsnowcurrently @FFY00
272274
**/*singlephase* @ericsnowcurrently
273275
Doc/c-api/module.rst @ericsnowcurrently
274276
Lib/test/test_module/ @ericsnowcurrently
275-
Python/dynload_*.c @ericsnowcurrently
277+
Python/dynload_*.c @ericsnowcurrently @FFY00
276278

277279
# Initialisation
278-
**/*initconfig* @ericsnowcurrently
279-
**/*pathconfig* @ericsnowcurrently
280-
**/*preconfig* @ericsnowcurrently
280+
**/*initconfig* @ericsnowcurrently @FFY00
281+
**/*pathconfig* @ericsnowcurrently @FFY00
282+
**/*preconfig* @ericsnowcurrently @FFY00
281283
Doc/library/sys_path_init.rst @FFY00
282284
Doc/c-api/init_config.rst @FFY00
283285

284286
# Interpreter main program
285-
Modules/main.c @ericsnowcurrently
286-
Programs/_bootstrap_python.c @ericsnowcurrently
287-
Programs/python.c @ericsnowcurrently
287+
Modules/main.c @ericsnowcurrently @FFY00
288+
Programs/_bootstrap_python.c @ericsnowcurrently @FFY00
289+
Programs/python.c @ericsnowcurrently @FFY00
288290

289291
# JIT
292+
.github/workflows/jit.yml @savannahostrowski
290293
Include/internal/pycore_jit.h @brandtbucher @savannahostrowski @diegorusso
291294
Python/jit.c @brandtbucher @savannahostrowski @diegorusso
292295
Tools/jit/ @brandtbucher @savannahostrowski @diegorusso
293296
InternalDocs/jit.md @brandtbucher @savannahostrowski @diegorusso @AA-Turner
294297

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+
295303
# Micro-op / μop / Tier 2 Optimiser
296304
Python/optimizer.c @markshannon @Fidget-Spinner
297305
Python/optimizer_analysis.c @markshannon @tomasr8 @Fidget-Spinner @savannahostrowski
@@ -308,8 +316,8 @@ Tools/peg_generator/ @pablogsal @lysnikolaou
308316

309317
# Runtime state/lifecycle
310318
**/*gil* @ericsnowcurrently
311-
**/*pylifecycle* @ericsnowcurrently @ZeroIntensity
312-
**/*pystate* @ericsnowcurrently @ZeroIntensity
319+
**/*pylifecycle* @ericsnowcurrently @ZeroIntensity @FFY00
320+
**/*pystate* @ericsnowcurrently @ZeroIntensity @FFY00
313321
Include/internal/pycore_*_init.h @ericsnowcurrently
314322
Include/internal/pycore_*_state.h @ericsnowcurrently
315323
Include/internal/pycore_atexit.h @ericsnowcurrently
@@ -417,18 +425,19 @@ Lib/dataclasses.py @ericvsmith
417425
Lib/test/test_dataclasses/ @ericvsmith
418426

419427
# 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
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
432441

433442
# Dbm
434443
Doc/library/dbm.rst @corona10 @erlend-aasland @serhiy-storchaka
@@ -467,8 +476,9 @@ Lib/test/test_functools.py @rhettinger
467476
Modules/_functoolsmodule.c @rhettinger
468477

469478
# Garbage collector
470-
Modules/gcmodule.c @pablogsal
471-
Doc/library/gc.rst @pablogsal
479+
Modules/gcmodule.c @pablogsal
480+
Doc/library/gc.rst @pablogsal
481+
InternalDocs/garbage_collector.md @pablogsal
472482

473483
# Gettext
474484
Doc/library/gettext.rst @tomasr8
@@ -495,13 +505,13 @@ Lib/idlelib/ @terryjreedy
495505
Lib/turtledemo/ @terryjreedy
496506

497507
# importlib.metadata
498-
Doc/library/importlib.metadata.rst @jaraco @warsaw
499-
Lib/importlib/metadata/ @jaraco @warsaw
500-
Lib/test/test_importlib/metadata/ @jaraco @warsaw
508+
Doc/library/importlib.metadata.rst @jaraco @warsaw @FFY00
509+
Lib/importlib/metadata/ @jaraco @warsaw @FFY00
510+
Lib/test/test_importlib/metadata/ @jaraco @warsaw @FFY00
501511

502512
# importlib.resources
503-
Doc/library/importlib.resources.abc.rst @jaraco @warsaw
504-
Doc/library/importlib.resources.rst @jaraco @warsaw
513+
Doc/library/importlib.resources.abc.rst @jaraco @warsaw @FFY00
514+
Doc/library/importlib.resources.rst @jaraco @warsaw @FFY00
505515
Lib/importlib/resources/ @jaraco @warsaw @FFY00
506516
Lib/test/test_importlib/resources/ @jaraco @warsaw @FFY00
507517

.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: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
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"]
5-
61
config-variables: null
72

83
paths:

0 commit comments

Comments
 (0)