Skip to content

Commit 588623a

Browse files
authored
Merge branch 'main' into issue-99631-2
2 parents b3770ae + 71da68d commit 588623a

File tree

2,716 files changed

+287774
-148504
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,716 files changed

+287774
-148504
lines changed

.azure-pipelines/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
trigger: ['main', '3.12', '3.11', '3.10', '3.9', '3.8', '3.7']
1+
trigger: ['main', '3.*']
22

33
jobs:
44
- job: Prebuild
55
displayName: Pre-build checks
66

77
pool:
8-
vmImage: ubuntu-22.04
8+
vmImage: ubuntu-24.04
99

1010
steps:
1111
- template: ./prebuild-checks.yml

.azure-pipelines/posix-deps-apt.sh

Lines changed: 0 additions & 27 deletions
This file was deleted.

.azure-pipelines/posix-steps.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.azure-pipelines/pr.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.devcontainer/Dockerfile

Lines changed: 0 additions & 24 deletions
This file was deleted.

.devcontainer/devcontainer.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
2-
"build": {
3-
"dockerfile": "Dockerfile"
4-
},
2+
"image": "ghcr.io/python/devcontainer:2024.09.25.11038928730",
53
"onCreateCommand": [
64
// Install common tooling.
75
"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: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ Lib/test/cjkencodings/* noeol
2727
Lib/test/tokenizedata/coding20731.py noeol
2828
Lib/test/decimaltestdata/*.decTest noeol
2929
Lib/test/test_email/data/*.txt noeol
30-
Lib/test/test_importlib/resources/data01/* noeol
31-
Lib/test/test_importlib/resources/namespacedata01/* noeol
3230
Lib/test/xmltestdata/* noeol
3331

3432
# Shell scripts should have LF even on Windows because of Cygwin

.github/CODEOWNERS

Lines changed: 68 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,28 @@
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
1616
Makefile.pre.in @erlend-aasland
1717
Modules/Setup* @erlend-aasland
1818

19+
# argparse
20+
**/*argparse* @savannahostrowski
21+
1922
# asyncio
20-
**/*asyncio* @1st1 @asvetlov @gvanrossum @kumaraditya303 @willingc
23+
**/*asyncio* @1st1 @asvetlov @kumaraditya303 @willingc
2124

2225
# Core
2326
**/*context* @1st1
2427
**/*genobject* @markshannon
2528
**/*hamt* @1st1
26-
**/*jit* @brandtbucher
29+
**/*jit* @brandtbucher @savannahostrowski
2730
Objects/set* @rhettinger
2831
Objects/dict* @methane @markshannon
2932
Objects/typevarobject.c @JelleZijlstra
@@ -33,11 +36,11 @@ Objects/frameobject.c @markshannon
3336
Objects/call.c @markshannon
3437
Python/ceval*.c @markshannon
3538
Python/ceval*.h @markshannon
39+
Python/codegen.c @markshannon @iritkatriel
3640
Python/compile.c @markshannon @iritkatriel
3741
Python/assemble.c @markshannon @iritkatriel
3842
Python/flowgraph.c @markshannon @iritkatriel
3943
Python/instruction_sequence.c @iritkatriel
40-
Python/ast_opt.c @isidentical
4144
Python/bytecodes.c @markshannon
4245
Python/optimizer*.c @markshannon
4346
Python/optimizer_analysis.c @Fidget-Spinner
@@ -53,6 +56,14 @@ Tools/c-analyzer/ @ericsnowcurrently
5356
# dbm
5457
**/*dbm* @corona10 @erlend-aasland @serhiy-storchaka
5558

59+
# Doc/ tools
60+
Doc/conf.py @AA-Turner @hugovk
61+
Doc/Makefile @AA-Turner @hugovk
62+
Doc/make.bat @AA-Turner @hugovk
63+
Doc/requirements.txt @AA-Turner @hugovk
64+
Doc/_static/** @AA-Turner @hugovk
65+
Doc/tools/** @AA-Turner @hugovk
66+
5667
# runtime state/lifecycle
5768
**/*pylifecycle* @ericsnowcurrently
5869
**/*pystate* @ericsnowcurrently
@@ -78,24 +89,39 @@ Programs/_bootstrap_python.c @ericsnowcurrently
7889
Programs/python.c @ericsnowcurrently
7990
Tools/build/generate_global_objects.py @ericsnowcurrently
8091

92+
# Initialization
93+
Doc/library/sys_path_init.rst @FFY00
94+
Doc/c-api/init_config.rst @FFY00
95+
96+
# getpath
97+
**/*getpath* @FFY00
98+
99+
# site
100+
**/*site.py @FFY00
101+
Doc/library/site.rst @FFY00
102+
81103
# Exceptions
82104
Lib/test/test_except*.py @iritkatriel
83105
Objects/exceptions.c @iritkatriel
84106

85-
# Hashing
86-
**/*hashlib* @gpshead @tiran
87-
**/*pyhash* @gpshead @tiran
88-
**/sha* @gpshead @tiran
89-
Modules/md5* @gpshead @tiran
90-
**/*blake* @gpshead @tiran
91-
Modules/_blake2/** @gpshead @tiran
92-
Modules/_hacl/** @gpshead
107+
# Hashing & cryptographic primitives
108+
**/*hashlib* @gpshead @tiran @picnixz
109+
**/*hashopenssl* @gpshead @tiran @picnixz
110+
**/*pyhash* @gpshead @tiran @picnixz
111+
Modules/*blake* @gpshead @tiran @picnixz
112+
Modules/*md5* @gpshead @tiran @picnixz
113+
Modules/*sha* @gpshead @tiran @picnixz
114+
Modules/_hacl/** @gpshead @picnixz
115+
**/*hmac* @gpshead @picnixz
116+
117+
# libssl
118+
**/*ssl* @gpshead @picnixz
93119

94120
# logging
95121
**/*logging* @vsajip
96122

97123
# venv
98-
**/*venv* @vsajip
124+
**/*venv* @vsajip @FFY00
99125

100126
# Launcher
101127
/PC/launcher.c @vsajip
@@ -141,6 +167,9 @@ Include/internal/pycore_time.h @pganssle @abalkin
141167
**/*imap* @python/email-team
142168
**/*poplib* @python/email-team
143169

170+
# Exclude .mailmap from being owned by @python/email-team
171+
/.mailmap
172+
144173
# Garbage collector
145174
/Modules/gcmodule.c @pablogsal
146175
/Doc/library/gc.rst @pablogsal
@@ -157,10 +186,13 @@ Include/internal/pycore_time.h @pganssle @abalkin
157186
/Tools/cases_generator/ @markshannon
158187

159188
# AST
160-
Python/ast.c @isidentical @JelleZijlstra
161-
Parser/asdl.py @isidentical @JelleZijlstra
162-
Parser/asdl_c.py @isidentical @JelleZijlstra
163-
Lib/ast.py @isidentical @JelleZijlstra
189+
Python/ast.c @isidentical @JelleZijlstra @eclips4
190+
Python/ast_opt.c @isidentical @eclips4
191+
Parser/asdl.py @isidentical @JelleZijlstra @eclips4
192+
Parser/asdl_c.py @isidentical @JelleZijlstra @eclips4
193+
Lib/ast.py @isidentical @JelleZijlstra @eclips4
194+
Lib/_ast_unparse.py @isidentical @JelleZijlstra @eclips4
195+
Lib/test/test_ast/ @eclips4
164196

165197
# Mock
166198
/Lib/unittest/mock.py @cjw296
@@ -205,15 +237,16 @@ Doc/c-api/stable.rst @encukou
205237
**/*bisect* @rhettinger
206238
**/*heapq* @rhettinger
207239
**/*functools* @rhettinger
208-
**/*decimal* @rhettinger
209240

210241
**/*dataclasses* @ericvsmith
211242

212243
**/*ensurepip* @pfmoore @pradyunsg
213244

214-
**/*idlelib* @terryjreedy
215245
/Doc/library/idle.rst @terryjreedy
246+
**/*idlelib* @terryjreedy
247+
**/*turtledemo* @terryjreedy
216248

249+
**/*annotationlib* @JelleZijlstra
217250
**/*typing* @JelleZijlstra @AlexWaygood
218251

219252
**/*ftplib @giampaolo
@@ -252,8 +285,8 @@ Modules/_interp*module.c @ericsnowcurrently
252285
Lib/test/test_interpreters/ @ericsnowcurrently
253286

254287
# Android
255-
**/*Android* @mhsmith
256-
**/*android* @mhsmith
288+
**/*Android* @mhsmith @freakboy3742
289+
**/*android* @mhsmith @freakboy3742
257290

258291
# iOS (but not termios)
259292
**/iOS* @freakboy3742
@@ -264,7 +297,7 @@ Lib/test/test_interpreters/ @ericsnowcurrently
264297
**/*-ios* @freakboy3742
265298

266299
# WebAssembly
267-
/Tools/wasm/ @brettcannon
300+
/Tools/wasm/ @brettcannon @freakboy3742
268301

269302
# SBOM
270303
/Misc/externals.spdx.json @sethmlarson
@@ -274,3 +307,15 @@ Lib/test/test_interpreters/ @ericsnowcurrently
274307
# Config Parser
275308
Lib/configparser.py @jaraco
276309
Lib/test/test_configparser.py @jaraco
310+
311+
# Doc sections
312+
Doc/reference/ @willingc @AA-Turner
313+
314+
**/*weakref* @kumaraditya303
315+
316+
# Colorize
317+
Lib/_colorize.py @hugovk
318+
Lib/test/test__colorize.py @hugovk
319+
320+
# Fuzzing
321+
Modules/_xxtestfuzz/ @ammaraskar

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ body:
3434
label: "CPython versions tested on:"
3535
multiple: true
3636
options:
37-
- "3.8"
3837
- "3.9"
3938
- "3.10"
4039
- "3.11"
4140
- "3.12"
4241
- "3.13"
42+
- "3.14"
4343
- "CPython main branch"
4444
validations:
4545
required: true

0 commit comments

Comments
 (0)