Skip to content

Commit adf78c7

Browse files
authored
Merge branch 'main' into json_ft
2 parents 7c5b185 + e5f03b9 commit adf78c7

File tree

2,185 files changed

+177908
-64758
lines changed

Some content is hidden

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

2,185 files changed

+177908
-64758
lines changed

.azure-pipelines/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
trigger: ['main', '3.13', '3.12', '3.11', '3.10', '3.9', '3.8']
1+
trigger: ['main', '3.*']
22

33
jobs:
44
- job: Prebuild

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"image": "ghcr.io/python/devcontainer:2024.09.25.11038928730",
2+
"image": "ghcr.io/python/devcontainer:2025.05.29.15334414373",
33
"onCreateCommand": [
44
// Install common tooling.
55
"dnf",

.editorconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
root = true
22

3-
[*.{py,c,cpp,h,js,rst,md,yml}]
3+
[*.{py,c,cpp,h,js,rst,md,yml,yaml}]
44
trim_trailing_whitespace = true
55
insert_final_newline = true
66
indent_style = space
@@ -11,5 +11,5 @@ indent_size = 4
1111
[*.rst]
1212
indent_size = 3
1313

14-
[*.{js,yml}]
14+
[*.{js,yml,yaml}]
1515
indent_size = 2

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
*.ico binary
1111
*.jpg binary
1212
*.pck binary
13+
*.pdf binary
1314
*.png binary
1415
*.psd binary
1516
*.tar binary
@@ -67,6 +68,7 @@ PCbuild/readme.txt dos
6768
**/clinic/*.cpp.h generated
6869
**/clinic/*.h.h generated
6970
*_db.h generated
71+
Doc/c-api/lifecycle.dot.svg generated
7072
Doc/data/stable_abi.dat generated
7173
Doc/library/token-list.inc generated
7274
Include/internal/pycore_ast.h generated

.github/CODEOWNERS

Lines changed: 54 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ Modules/Setup* @erlend-aasland
3030
Objects/set* @rhettinger
3131
Objects/dict* @methane @markshannon
3232
Objects/typevarobject.c @JelleZijlstra
33+
Objects/unionobject.c @JelleZijlstra
3334
Objects/type* @markshannon
3435
Objects/codeobject.c @markshannon
3536
Objects/frameobject.c @markshannon
3637
Objects/call.c @markshannon
38+
Objects/object.c @ZeroIntensity
3739
Python/ceval*.c @markshannon
3840
Python/ceval*.h @markshannon
3941
Python/codegen.c @markshannon @iritkatriel
@@ -43,8 +45,9 @@ Python/flowgraph.c @markshannon @iritkatriel
4345
Python/instruction_sequence.c @iritkatriel
4446
Python/bytecodes.c @markshannon
4547
Python/optimizer*.c @markshannon
46-
Python/optimizer_analysis.c @Fidget-Spinner
47-
Python/optimizer_bytecodes.c @Fidget-Spinner
48+
Python/optimizer_analysis.c @Fidget-Spinner @tomasr8
49+
Python/optimizer_bytecodes.c @Fidget-Spinner @tomasr8
50+
Python/optimizer_symbols.c @tomasr8
4851
Python/symtable.c @JelleZijlstra @carljm
4952
Lib/_pyrepl/* @pablogsal @lysnikolaou @ambv
5053
Lib/test/test_patma.py @brandtbucher
@@ -65,8 +68,8 @@ Doc/_static/** @AA-Turner @hugovk
6568
Doc/tools/** @AA-Turner @hugovk
6669

6770
# runtime state/lifecycle
68-
**/*pylifecycle* @ericsnowcurrently
69-
**/*pystate* @ericsnowcurrently
71+
**/*pylifecycle* @ericsnowcurrently @ZeroIntensity
72+
**/*pystate* @ericsnowcurrently @ZeroIntensity
7073
**/*preconfig* @ericsnowcurrently
7174
**/*initconfig* @ericsnowcurrently
7275
**/*pathconfig* @ericsnowcurrently
@@ -106,13 +109,17 @@ Objects/exceptions.c @iritkatriel
106109

107110
# Hashing & cryptographic primitives
108111
**/*hashlib* @gpshead @tiran @picnixz
109-
**/*pyhash* @gpshead @tiran
110-
**/sha* @gpshead @tiran @picnixz
111-
Modules/md5* @gpshead @tiran @picnixz
112-
**/*blake* @gpshead @tiran @picnixz
113-
Modules/_hacl/** @gpshead
112+
**/*hashopenssl* @gpshead @tiran @picnixz
113+
**/*pyhash* @gpshead @tiran @picnixz
114+
Modules/*blake* @gpshead @tiran @picnixz
115+
Modules/*md5* @gpshead @tiran @picnixz
116+
Modules/*sha* @gpshead @tiran @picnixz
117+
Modules/_hacl/** @gpshead @picnixz
114118
**/*hmac* @gpshead @picnixz
115119

120+
# libssl
121+
**/*ssl* @gpshead @picnixz
122+
116123
# logging
117124
**/*logging* @vsajip
118125

@@ -163,6 +170,9 @@ Include/internal/pycore_time.h @pganssle @abalkin
163170
**/*imap* @python/email-team
164171
**/*poplib* @python/email-team
165172

173+
# Exclude .mailmap from being owned by @python/email-team
174+
/.mailmap
175+
166176
# Garbage collector
167177
/Modules/gcmodule.c @pablogsal
168178
/Doc/library/gc.rst @pablogsal
@@ -179,12 +189,13 @@ Include/internal/pycore_time.h @pganssle @abalkin
179189
/Tools/cases_generator/ @markshannon
180190

181191
# AST
182-
Python/ast.c @isidentical @JelleZijlstra @eclips4
183-
Python/ast_opt.c @isidentical @eclips4
184-
Parser/asdl.py @isidentical @JelleZijlstra @eclips4
185-
Parser/asdl_c.py @isidentical @JelleZijlstra @eclips4
186-
Lib/ast.py @isidentical @JelleZijlstra @eclips4
187-
Lib/test/test_ast/ @eclips4
192+
Python/ast.c @isidentical @JelleZijlstra @eclips4 @tomasr8
193+
Python/ast_preprocess.c @isidentical @eclips4 @tomasr8
194+
Parser/asdl.py @isidentical @JelleZijlstra @eclips4 @tomasr8
195+
Parser/asdl_c.py @isidentical @JelleZijlstra @eclips4 @tomasr8
196+
Lib/ast.py @isidentical @JelleZijlstra @eclips4 @tomasr8
197+
Lib/_ast_unparse.py @isidentical @JelleZijlstra @eclips4 @tomasr8
198+
Lib/test/test_ast/ @eclips4 @tomasr8
188199

189200
# Mock
190201
/Lib/unittest/mock.py @cjw296
@@ -272,9 +283,13 @@ Doc/howto/clinic.rst @erlend-aasland
272283
# Subinterpreters
273284
**/*interpreteridobject.* @ericsnowcurrently
274285
**/*crossinterp* @ericsnowcurrently
275-
Lib/test/support/interpreters/ @ericsnowcurrently
276286
Modules/_interp*module.c @ericsnowcurrently
287+
Lib/test/test__interp*.py @ericsnowcurrently
288+
Lib/concurrent/interpreters/ @ericsnowcurrently
289+
Lib/test/support/channels.py @ericsnowcurrently
290+
Doc/library/concurrent.interpreters.rst @ericsnowcurrently
277291
Lib/test/test_interpreters/ @ericsnowcurrently
292+
Lib/concurrent/futures/interpreter.py @ericsnowcurrently
278293

279294
# Android
280295
**/*Android* @mhsmith @freakboy3742
@@ -289,7 +304,12 @@ Lib/test/test_interpreters/ @ericsnowcurrently
289304
**/*-ios* @freakboy3742
290305

291306
# WebAssembly
292-
/Tools/wasm/ @brettcannon @freakboy3742
307+
Tools/wasm/config.site-wasm32-emscripten @freakboy3742
308+
/Tools/wasm/README.md @brettcannon @freakboy3742
309+
/Tools/wasm/wasi-env @brettcannon
310+
/Tools/wasm/wasi.py @brettcannon
311+
/Tools/wasm/emscripten @freakboy3742
312+
/Tools/wasm/wasi @brettcannon
293313

294314
# SBOM
295315
/Misc/externals.spdx.json @sethmlarson
@@ -308,3 +328,20 @@ Doc/reference/ @willingc @AA-Turner
308328
# Colorize
309329
Lib/_colorize.py @hugovk
310330
Lib/test/test__colorize.py @hugovk
331+
332+
# Fuzzing
333+
Modules/_xxtestfuzz/ @ammaraskar
334+
335+
# t-strings
336+
**/*interpolationobject* @lysnikolaou
337+
**/*templateobject* @lysnikolaou
338+
**/*templatelib* @lysnikolaou
339+
**/*tstring* @lysnikolaou
340+
341+
# Remote debugging
342+
Python/remote_debug.h @pablogsal
343+
Python/remote_debugging.c @pablogsal
344+
Modules/_remote_debugging_module.c @pablogsal @ambv @1st1
345+
346+
# gettext
347+
**/*gettext* @tomasr8

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ body:
4040
- "3.12"
4141
- "3.13"
4242
- "3.14"
43+
- "3.15"
4344
- "CPython main branch"
4445
validations:
4546
required: true

.github/ISSUE_TEMPLATE/crash.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ body:
3333
- "3.12"
3434
- "3.13"
3535
- "3.14"
36+
- "3.15"
3637
- "CPython main branch"
3738
validations:
3839
required: true

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Please read this comment in its entirety. It's quite important.
77
It should be in the following format:
88
99
```
10-
gh-NNNNN: Summary of the changes made
10+
gh-NNNNNN: Summary of the changes made
1111
```
1212
13-
Where: gh-NNNNN refers to the GitHub issue number.
13+
Where: gh-NNNNNN refers to the GitHub issue number.
1414
1515
Most PRs will require an issue number. Trivial changes, like fixing a typo, do not need an issue.
1616
@@ -20,11 +20,11 @@ If this is a backport PR (PR made against branches other than `main`),
2020
please ensure that the PR title is in the following format:
2121
2222
```
23-
[X.Y] <title from the original PR> (GH-NNNN)
23+
[X.Y] <title from the original PR> (GH-NNNNNN)
2424
```
2525
26-
Where: [X.Y] is the branch name, e.g. [3.6].
26+
Where: [X.Y] is the branch name, for example: [3.13].
2727
28-
GH-NNNN refers to the PR number from `main`.
28+
GH-NNNNNN refers to the PR number from `main`.
2929
3030
-->

.github/actionlint.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
self-hosted-runner:
2-
labels: ["windows-aarch64"]
2+
# Pending https://github.com/rhysd/actionlint/issues/533
3+
labels: ["windows-11-arm"]
34

45
config-variables: null
56

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
permissions:
2020
issues: write
21+
timeout-minutes: 5
2122
steps:
2223
- uses: actions/github-script@v7
2324
with:

0 commit comments

Comments
 (0)