Skip to content

Commit 8506452

Browse files
authored
Merge branch 'main' into AF_DECnet
2 parents 5f10bb8 + 6ea4258 commit 8506452

File tree

2,488 files changed

+247655
-102383
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,488 files changed

+247655
-102383
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: 72 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
# https://git-scm.com/docs/gitignore#_pattern_format
66

77
# GitHub
8-
.github/** @ezio-melotti @hugovk
8+
.github/** @ezio-melotti @hugovk @AA-Turner
99

1010
# pre-commit
1111
.pre-commit-config.yaml @hugovk @AlexWaygood
12-
.ruff.toml @hugovk @AlexWaygood
12+
.ruff.toml @hugovk @AlexWaygood @AA-Turner
1313

1414
# Build system
1515
configure* @erlend-aasland @corona10
@@ -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
@@ -56,9 +59,17 @@ Tools/c-analyzer/ @ericsnowcurrently
5659
# dbm
5760
**/*dbm* @corona10 @erlend-aasland @serhiy-storchaka
5861

62+
# Doc/ tools
63+
Doc/conf.py @AA-Turner @hugovk
64+
Doc/Makefile @AA-Turner @hugovk
65+
Doc/make.bat @AA-Turner @hugovk
66+
Doc/requirements.txt @AA-Turner @hugovk
67+
Doc/_static/** @AA-Turner @hugovk
68+
Doc/tools/** @AA-Turner @hugovk
69+
5970
# runtime state/lifecycle
60-
**/*pylifecycle* @ericsnowcurrently
61-
**/*pystate* @ericsnowcurrently
71+
**/*pylifecycle* @ericsnowcurrently @ZeroIntensity
72+
**/*pystate* @ericsnowcurrently @ZeroIntensity
6273
**/*preconfig* @ericsnowcurrently
6374
**/*initconfig* @ericsnowcurrently
6475
**/*pathconfig* @ericsnowcurrently
@@ -96,13 +107,18 @@ Doc/library/site.rst @FFY00
96107
Lib/test/test_except*.py @iritkatriel
97108
Objects/exceptions.c @iritkatriel
98109

99-
# Hashing
100-
**/*hashlib* @gpshead @tiran
101-
**/*pyhash* @gpshead @tiran
102-
**/sha* @gpshead @tiran
103-
Modules/md5* @gpshead @tiran
104-
**/*blake* @gpshead @tiran
105-
Modules/_hacl/** @gpshead
110+
# Hashing & cryptographic primitives
111+
**/*hashlib* @gpshead @tiran @picnixz
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
118+
**/*hmac* @gpshead @picnixz
119+
120+
# libssl
121+
**/*ssl* @gpshead @picnixz
106122

107123
# logging
108124
**/*logging* @vsajip
@@ -154,6 +170,9 @@ Include/internal/pycore_time.h @pganssle @abalkin
154170
**/*imap* @python/email-team
155171
**/*poplib* @python/email-team
156172

173+
# Exclude .mailmap from being owned by @python/email-team
174+
/.mailmap
175+
157176
# Garbage collector
158177
/Modules/gcmodule.c @pablogsal
159178
/Doc/library/gc.rst @pablogsal
@@ -170,12 +189,13 @@ Include/internal/pycore_time.h @pganssle @abalkin
170189
/Tools/cases_generator/ @markshannon
171190

172191
# AST
173-
Python/ast.c @isidentical @JelleZijlstra @eclips4
174-
Python/ast_opt.c @isidentical @eclips4
175-
Parser/asdl.py @isidentical @JelleZijlstra @eclips4
176-
Parser/asdl_c.py @isidentical @JelleZijlstra @eclips4
177-
Lib/ast.py @isidentical @JelleZijlstra @eclips4
178-
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
179199

180200
# Mock
181201
/Lib/unittest/mock.py @cjw296
@@ -263,9 +283,13 @@ Doc/howto/clinic.rst @erlend-aasland
263283
# Subinterpreters
264284
**/*interpreteridobject.* @ericsnowcurrently
265285
**/*crossinterp* @ericsnowcurrently
266-
Lib/test/support/interpreters/ @ericsnowcurrently
267286
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
268291
Lib/test/test_interpreters/ @ericsnowcurrently
292+
Lib/concurrent/futures/interpreter.py @ericsnowcurrently
269293

270294
# Android
271295
**/*Android* @mhsmith @freakboy3742
@@ -280,7 +304,12 @@ Lib/test/test_interpreters/ @ericsnowcurrently
280304
**/*-ios* @freakboy3742
281305

282306
# WebAssembly
283-
/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
284313

285314
# SBOM
286315
/Misc/externals.spdx.json @sethmlarson
@@ -292,6 +321,27 @@ Lib/configparser.py @jaraco
292321
Lib/test/test_configparser.py @jaraco
293322

294323
# Doc sections
295-
Doc/reference/ @willingc
324+
Doc/reference/ @willingc @AA-Turner
296325

297326
**/*weakref* @kumaraditya303
327+
328+
# Colorize
329+
Lib/_colorize.py @hugovk
330+
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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
self-hosted-runner:
2-
labels: ["ubuntu-24.04-aarch64", "windows-aarch64"]
2+
# Pending https://github.com/rhysd/actionlint/issues/533
3+
labels: ["windows-11-arm"]
34

45
config-variables: null
56

67
paths:
78
.github/workflows/**/*.yml:
89
ignore:
910
- 1st argument of function call is not assignable
10-
- SC2(015|038|086|091|097|098|129|155)
11+
- SC2(015|038|086|091|097|098|129|155)

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