Skip to content

Commit a40da59

Browse files
committed
Merge branch 'main' of https://github.com/python/cpython into shared-object-proxy
2 parents 7cd1469 + 8db8fc9 commit a40da59

File tree

1,438 files changed

+176883
-51727
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,438 files changed

+176883
-51727
lines changed

.gitattributes

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ PCbuild/readme.txt dos
6868
**/clinic/*.cpp.h generated
6969
**/clinic/*.h.h generated
7070
*_db.h generated
71+
Doc/_static/tachyon-example-*.html generated
7172
Doc/c-api/lifecycle.dot.svg generated
7273
Doc/data/stable_abi.dat generated
7374
Doc/library/token-list.inc generated
@@ -82,14 +83,19 @@ Include/opcode.h generated
8283
Include/opcode_ids.h generated
8384
Include/token.h generated
8485
Lib/_opcode_metadata.py generated
85-
Lib/keyword.py generated
8686
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
8790
Lib/test/certdata/*.pem generated
8891
Lib/test/certdata/*.0 generated
8992
Lib/test/levenshtein_examples.json generated
9093
Lib/test/test_stable_abi_ctypes.py generated
94+
Lib/test/test_zoneinfo/data/*.json generated
9195
Lib/token.py generated
9296
Misc/sbom.spdx.json generated
97+
Modules/_testinternalcapi/test_cases.c.h generated
98+
Modules/_testinternalcapi/test_targets.h generated
9399
Objects/typeslots.inc generated
94100
PC/python3dll.c generated
95101
Parser/parser.c generated
@@ -100,6 +106,7 @@ Python/executor_cases.c.h generated
100106
Python/generated_cases.c.h generated
101107
Python/optimizer_cases.c.h generated
102108
Python/opcode_targets.h generated
109+
Python/record_functions.c.h generated
103110
Python/stdlib_module_names.h generated
104111
Tools/peg_generator/pegen/grammar_parser.py generated
105112
aclocal.m4 generated

.github/CODEOWNERS

Lines changed: 35 additions & 13 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

@@ -126,6 +128,9 @@ Doc/howto/clinic.rst @erlend-aasland @AA-Turner
126128
# C Analyser
127129
Tools/c-analyzer/ @ericsnowcurrently
128130

131+
# C API Documentation Checks
132+
Tools/check-c-api-docs/ @ZeroIntensity
133+
129134
# Fuzzing
130135
Modules/_xxtestfuzz/ @ammaraskar
131136

@@ -140,6 +145,9 @@ Misc/externals.spdx.json @sethmlarson
140145
Misc/sbom.spdx.json @sethmlarson
141146
Tools/build/generate_sbom.py @sethmlarson
142147

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

144152
# ----------------------------------------------------------------------------
145153
# Platform Support
@@ -170,9 +178,10 @@ Tools/wasm/config.site-wasm32-emscripten @freakboy3742 @emmatyping
170178
Tools/wasm/emscripten @freakboy3742 @emmatyping
171179

172180
# WebAssembly (WASI)
173-
Tools/wasm/wasi-env @brettcannon @emmatyping
174-
Tools/wasm/wasi.py @brettcannon @emmatyping
175-
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
176185

177186
# Windows
178187
PC/ @python/windows-team
@@ -285,11 +294,17 @@ Python/jit.c @brandtbucher @savannahostrowski @diegorusso
285294
Tools/jit/ @brandtbucher @savannahostrowski @diegorusso
286295
InternalDocs/jit.md @brandtbucher @savannahostrowski @diegorusso @AA-Turner
287296

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+
288303
# Micro-op / μop / Tier 2 Optimiser
289-
Python/optimizer.c @markshannon
290-
Python/optimizer_analysis.c @markshannon @tomasr8 @Fidget-Spinner
291-
Python/optimizer_bytecodes.c @markshannon @tomasr8 @Fidget-Spinner
292-
Python/optimizer_symbols.c @markshannon @tomasr8
304+
Python/optimizer.c @markshannon @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
293308

294309
# Parser, Lexer, and Grammar
295310
Grammar/python.gram @pablogsal @lysnikolaou
@@ -319,7 +334,7 @@ Tools/build/generate_global_objects.py @ericsnowcurrently
319334
# Remote Debugging
320335
Python/remote_debug.h @pablogsal
321336
Python/remote_debugging.c @pablogsal
322-
Modules/_remote_debugging_module.c @pablogsal @ambv @1st1
337+
Modules/_remote_debugging/ @pablogsal
323338

324339
# Sub-Interpreters
325340
**/*crossinterp* @ericsnowcurrently
@@ -411,6 +426,7 @@ Lib/test/test_dataclasses/ @ericvsmith
411426

412427
# Dates and times
413428
Doc/**/*time.rst @pganssle @abalkin
429+
Doc/library/datetime-* @pganssle
414430
Doc/library/zoneinfo.rst @pganssle
415431
Include/datetime.h @pganssle @abalkin
416432
Include/internal/pycore_time.h @pganssle @abalkin
@@ -460,8 +476,9 @@ Lib/test/test_functools.py @rhettinger
460476
Modules/_functoolsmodule.c @rhettinger
461477

462478
# Garbage collector
463-
Modules/gcmodule.c @pablogsal
464-
Doc/library/gc.rst @pablogsal
479+
Modules/gcmodule.c @pablogsal
480+
Doc/library/gc.rst @pablogsal
481+
InternalDocs/garbage_collector.md @pablogsal
465482

466483
# Gettext
467484
Doc/library/gettext.rst @tomasr8
@@ -534,6 +551,11 @@ Lib/pydoc.py @AA-Turner
534551
Lib/pydoc_data/ @AA-Turner
535552
Lib/test/test_pydoc/ @AA-Turner
536553

554+
# Profiling (Sampling)
555+
Doc/library/profiling*.rst @pablogsal
556+
Lib/profiling/ @pablogsal
557+
Lib/test/test_profiling/ @pablogsal
558+
537559
# PyREPL
538560
Lib/_pyrepl/ @pablogsal @lysnikolaou @ambv
539561
Lib/test/test_pyrepl/ @pablogsal @lysnikolaou @ambv

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ contact_links:
55
- name: "Proposing new features"
66
about: "Submit major feature proposal (e.g. syntax changes) to an ideas forum first."
77
url: "https://discuss.python.org/c/ideas/6"
8+
- name: "Python Install Manager issues"
9+
about: "Report issues with the Python Install Manager (for Windows)"
10+
url: "https://github.com/python/pymanager/issues"

.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)