Skip to content

Commit c68cb4d

Browse files
Merge branch 'main' into pythongh-63882-doc_strings
2 parents 7b1666d + 8cf4947 commit c68cb4d

File tree

1,840 files changed

+181926
-79271
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,840 files changed

+181926
-79271
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

.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

.github/CODEOWNERS

Lines changed: 45 additions & 10 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,6 +30,7 @@ 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
@@ -56,6 +57,14 @@ Tools/c-analyzer/ @ericsnowcurrently
5657
# dbm
5758
**/*dbm* @corona10 @erlend-aasland @serhiy-storchaka
5859

60+
# Doc/ tools
61+
Doc/conf.py @AA-Turner @hugovk
62+
Doc/Makefile @AA-Turner @hugovk
63+
Doc/make.bat @AA-Turner @hugovk
64+
Doc/requirements.txt @AA-Turner @hugovk
65+
Doc/_static/** @AA-Turner @hugovk
66+
Doc/tools/** @AA-Turner @hugovk
67+
5968
# runtime state/lifecycle
6069
**/*pylifecycle* @ericsnowcurrently
6170
**/*pystate* @ericsnowcurrently
@@ -98,13 +107,17 @@ Objects/exceptions.c @iritkatriel
98107

99108
# Hashing & cryptographic primitives
100109
**/*hashlib* @gpshead @tiran @picnixz
101-
**/*pyhash* @gpshead @tiran
102-
**/sha* @gpshead @tiran @picnixz
103-
Modules/md5* @gpshead @tiran @picnixz
104-
**/*blake* @gpshead @tiran @picnixz
105-
Modules/_hacl/** @gpshead
110+
**/*hashopenssl* @gpshead @tiran @picnixz
111+
**/*pyhash* @gpshead @tiran @picnixz
112+
Modules/*blake* @gpshead @tiran @picnixz
113+
Modules/*md5* @gpshead @tiran @picnixz
114+
Modules/*sha* @gpshead @tiran @picnixz
115+
Modules/_hacl/** @gpshead @picnixz
106116
**/*hmac* @gpshead @picnixz
107117

118+
# libssl
119+
**/*ssl* @gpshead @picnixz
120+
108121
# logging
109122
**/*logging* @vsajip
110123

@@ -155,6 +168,9 @@ Include/internal/pycore_time.h @pganssle @abalkin
155168
**/*imap* @python/email-team
156169
**/*poplib* @python/email-team
157170

171+
# Exclude .mailmap from being owned by @python/email-team
172+
/.mailmap
173+
158174
# Garbage collector
159175
/Modules/gcmodule.c @pablogsal
160176
/Doc/library/gc.rst @pablogsal
@@ -172,10 +188,11 @@ Include/internal/pycore_time.h @pganssle @abalkin
172188

173189
# AST
174190
Python/ast.c @isidentical @JelleZijlstra @eclips4
175-
Python/ast_opt.c @isidentical @eclips4
191+
Python/ast_preprocess.c @isidentical @eclips4
176192
Parser/asdl.py @isidentical @JelleZijlstra @eclips4
177193
Parser/asdl_c.py @isidentical @JelleZijlstra @eclips4
178194
Lib/ast.py @isidentical @JelleZijlstra @eclips4
195+
Lib/_ast_unparse.py @isidentical @JelleZijlstra @eclips4
179196
Lib/test/test_ast/ @eclips4
180197

181198
# Mock
@@ -281,7 +298,12 @@ Lib/test/test_interpreters/ @ericsnowcurrently
281298
**/*-ios* @freakboy3742
282299

283300
# WebAssembly
284-
/Tools/wasm/ @brettcannon @freakboy3742
301+
Tools/wasm/config.site-wasm32-emscripten @freakboy3742
302+
/Tools/wasm/README.md @brettcannon @freakboy3742
303+
/Tools/wasm/wasi-env @brettcannon
304+
/Tools/wasm/wasi.py @brettcannon
305+
/Tools/wasm/emscripten @freakboy3742
306+
/Tools/wasm/wasi @brettcannon
285307

286308
# SBOM
287309
/Misc/externals.spdx.json @sethmlarson
@@ -293,6 +315,19 @@ Lib/configparser.py @jaraco
293315
Lib/test/test_configparser.py @jaraco
294316

295317
# Doc sections
296-
Doc/reference/ @willingc
318+
Doc/reference/ @willingc @AA-Turner
297319

298320
**/*weakref* @kumaraditya303
321+
322+
# Colorize
323+
Lib/_colorize.py @hugovk
324+
Lib/test/test__colorize.py @hugovk
325+
326+
# Fuzzing
327+
Modules/_xxtestfuzz/ @ammaraskar
328+
329+
# t-strings
330+
**/*interpolationobject* @lysnikolaou
331+
**/*templateobject* @lysnikolaou
332+
**/*templatelib* @lysnikolaou
333+
**/*tstring* @lysnikolaou

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