Skip to content

Commit 5df505a

Browse files
Merge branch 'main' into wip-inspect-multi-signature
2 parents 2227748 + f5a7037 commit 5df505a

2,689 files changed

Lines changed: 302003 additions & 153353 deletions

File tree

Some content is hidden

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

.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.13', '3.12', '3.11', '3.10', '3.9', '3.8']
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",

.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: 70 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +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
16+
Makefile.pre.in @erlend-aasland
17+
Modules/Setup* @erlend-aasland
18+
19+
# argparse
20+
**/*argparse* @savannahostrowski
1621

1722
# asyncio
18-
**/*asyncio* @1st1 @asvetlov @gvanrossum @kumaraditya303 @willingc
23+
**/*asyncio* @1st1 @asvetlov @kumaraditya303 @willingc
1924

2025
# Core
2126
**/*context* @1st1
2227
**/*genobject* @markshannon
2328
**/*hamt* @1st1
24-
**/*jit* @brandtbucher
29+
**/*jit* @brandtbucher @savannahostrowski
2530
Objects/set* @rhettinger
2631
Objects/dict* @methane @markshannon
2732
Objects/typevarobject.c @JelleZijlstra
@@ -31,16 +36,16 @@ Objects/frameobject.c @markshannon
3136
Objects/call.c @markshannon
3237
Python/ceval*.c @markshannon
3338
Python/ceval*.h @markshannon
39+
Python/codegen.c @markshannon @iritkatriel
3440
Python/compile.c @markshannon @iritkatriel
3541
Python/assemble.c @markshannon @iritkatriel
3642
Python/flowgraph.c @markshannon @iritkatriel
3743
Python/instruction_sequence.c @iritkatriel
38-
Python/ast_opt.c @isidentical
3944
Python/bytecodes.c @markshannon
4045
Python/optimizer*.c @markshannon
4146
Python/optimizer_analysis.c @Fidget-Spinner
4247
Python/optimizer_bytecodes.c @Fidget-Spinner
43-
Python/symtable.c @JelleZijlstra @carljm
48+
Python/symtable.c @JelleZijlstra @carljm
4449
Lib/_pyrepl/* @pablogsal @lysnikolaou @ambv
4550
Lib/test/test_patma.py @brandtbucher
4651
Lib/test/test_type_*.py @JelleZijlstra
@@ -51,6 +56,14 @@ Tools/c-analyzer/ @ericsnowcurrently
5156
# dbm
5257
**/*dbm* @corona10 @erlend-aasland @serhiy-storchaka
5358

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+
5467
# runtime state/lifecycle
5568
**/*pylifecycle* @ericsnowcurrently
5669
**/*pystate* @ericsnowcurrently
@@ -70,29 +83,45 @@ Include/internal/pycore_freelist.h @ericsnowcurrently
7083
Include/internal/pycore_global_objects.h @ericsnowcurrently
7184
Include/internal/pycore_obmalloc.h @ericsnowcurrently
7285
Include/internal/pycore_pymem.h @ericsnowcurrently
86+
Include/internal/pycore_stackref.h @Fidget-Spinner
7387
Modules/main.c @ericsnowcurrently
7488
Programs/_bootstrap_python.c @ericsnowcurrently
7589
Programs/python.c @ericsnowcurrently
7690
Tools/build/generate_global_objects.py @ericsnowcurrently
7791

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+
78103
# Exceptions
79104
Lib/test/test_except*.py @iritkatriel
80105
Objects/exceptions.c @iritkatriel
81106

82-
# Hashing
83-
**/*hashlib* @gpshead @tiran
84-
**/*pyhash* @gpshead @tiran
85-
**/sha* @gpshead @tiran
86-
Modules/md5* @gpshead @tiran
87-
**/*blake* @gpshead @tiran
88-
Modules/_blake2/** @gpshead @tiran
89-
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
90119

91120
# logging
92121
**/*logging* @vsajip
93122

94123
# venv
95-
**/*venv* @vsajip
124+
**/*venv* @vsajip @FFY00
96125

97126
# Launcher
98127
/PC/launcher.c @vsajip
@@ -154,10 +183,13 @@ Include/internal/pycore_time.h @pganssle @abalkin
154183
/Tools/cases_generator/ @markshannon
155184

156185
# AST
157-
Python/ast.c @isidentical @JelleZijlstra
158-
Parser/asdl.py @isidentical @JelleZijlstra
159-
Parser/asdl_c.py @isidentical @JelleZijlstra
160-
Lib/ast.py @isidentical @JelleZijlstra
186+
Python/ast.c @isidentical @JelleZijlstra @eclips4
187+
Python/ast_opt.c @isidentical @eclips4
188+
Parser/asdl.py @isidentical @JelleZijlstra @eclips4
189+
Parser/asdl_c.py @isidentical @JelleZijlstra @eclips4
190+
Lib/ast.py @isidentical @JelleZijlstra @eclips4
191+
Lib/_ast_unparse.py @isidentical @JelleZijlstra @eclips4
192+
Lib/test/test_ast/ @eclips4
161193

162194
# Mock
163195
/Lib/unittest/mock.py @cjw296
@@ -199,18 +231,19 @@ Doc/c-api/stable.rst @encukou
199231
**/*itertools* @rhettinger
200232
**/*collections* @rhettinger
201233
**/*random* @rhettinger
202-
**/*queue* @rhettinger
203234
**/*bisect* @rhettinger
204235
**/*heapq* @rhettinger
205236
**/*functools* @rhettinger
206-
**/*decimal* @rhettinger
207237

208238
**/*dataclasses* @ericvsmith
209239

210240
**/*ensurepip* @pfmoore @pradyunsg
211241

242+
/Doc/library/idle.rst @terryjreedy
212243
**/*idlelib* @terryjreedy
244+
**/*turtledemo* @terryjreedy
213245

246+
**/*annotationlib* @JelleZijlstra
214247
**/*typing* @JelleZijlstra @AlexWaygood
215248

216249
**/*ftplib @giampaolo
@@ -245,12 +278,12 @@ Doc/howto/clinic.rst @erlend-aasland
245278
**/*interpreteridobject.* @ericsnowcurrently
246279
**/*crossinterp* @ericsnowcurrently
247280
Lib/test/support/interpreters/ @ericsnowcurrently
248-
Modules/_xx*interp*module.c @ericsnowcurrently
281+
Modules/_interp*module.c @ericsnowcurrently
249282
Lib/test/test_interpreters/ @ericsnowcurrently
250283

251284
# Android
252-
**/*Android* @mhsmith
253-
**/*android* @mhsmith
285+
**/*Android* @mhsmith @freakboy3742
286+
**/*android* @mhsmith @freakboy3742
254287

255288
# iOS (but not termios)
256289
**/iOS* @freakboy3742
@@ -261,7 +294,7 @@ Lib/test/test_interpreters/ @ericsnowcurrently
261294
**/*-ios* @freakboy3742
262295

263296
# WebAssembly
264-
/Tools/wasm/ @brettcannon
297+
/Tools/wasm/ @brettcannon @freakboy3742
265298

266299
# SBOM
267300
/Misc/externals.spdx.json @sethmlarson
@@ -271,3 +304,15 @@ Lib/test/test_interpreters/ @ericsnowcurrently
271304
# Config Parser
272305
Lib/configparser.py @jaraco
273306
Lib/test/test_configparser.py @jaraco
307+
308+
# Doc sections
309+
Doc/reference/ @willingc @AA-Turner
310+
311+
**/*weakref* @kumaraditya303
312+
313+
# Colorize
314+
Lib/_colorize.py @hugovk
315+
Lib/test/test__colorize.py @hugovk
316+
317+
# Fuzzing
318+
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

.github/ISSUE_TEMPLATE/crash.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ body:
2727
label: "CPython versions tested on:"
2828
multiple: true
2929
options:
30-
- "3.8"
3130
- "3.9"
3231
- "3.10"
3332
- "3.11"
3433
- "3.12"
34+
- "3.13"
35+
- "3.14"
3536
- "CPython main branch"
3637
validations:
3738
required: true

0 commit comments

Comments
 (0)