Skip to content

Commit e1654d4

Browse files
committed
Merge remote-tracking branch 'upstream/main' into multiprocessing-queue-shutdown
2 parents 1f19257 + cfe4103 commit e1654d4

File tree

2,373 files changed

+259599
-138503
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,373 files changed

+259599
-138503
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.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: 71 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -5,50 +5,65 @@
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
2833
Objects/type* @markshannon
2934
Objects/codeobject.c @markshannon
3035
Objects/frameobject.c @markshannon
3136
Objects/call.c @markshannon
32-
Python/ceval*.c @markshannon @gvanrossum
33-
Python/ceval*.h @markshannon @gvanrossum
37+
Python/ceval*.c @markshannon
38+
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
37-
Python/ast_opt.c @isidentical
38-
Python/bytecodes.c @markshannon @gvanrossum
39-
Python/optimizer*.c @markshannon @gvanrossum
43+
Python/instruction_sequence.c @iritkatriel
44+
Python/bytecodes.c @markshannon
45+
Python/optimizer*.c @markshannon
4046
Python/optimizer_analysis.c @Fidget-Spinner
4147
Python/optimizer_bytecodes.c @Fidget-Spinner
48+
Python/symtable.c @JelleZijlstra @carljm
4249
Lib/_pyrepl/* @pablogsal @lysnikolaou @ambv
4350
Lib/test/test_patma.py @brandtbucher
4451
Lib/test/test_type_*.py @JelleZijlstra
45-
Lib/test/test_capi/test_misc.py @markshannon @gvanrossum
52+
Lib/test/test_capi/test_misc.py @markshannon
4653
Lib/test/test_pyrepl/* @pablogsal @lysnikolaou @ambv
4754
Tools/c-analyzer/ @ericsnowcurrently
4855

4956
# dbm
5057
**/*dbm* @corona10 @erlend-aasland @serhiy-storchaka
5158

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+
5267
# runtime state/lifecycle
5368
**/*pylifecycle* @ericsnowcurrently
5469
**/*pystate* @ericsnowcurrently
@@ -68,32 +83,41 @@ Include/internal/pycore_freelist.h @ericsnowcurrently
6883
Include/internal/pycore_global_objects.h @ericsnowcurrently
6984
Include/internal/pycore_obmalloc.h @ericsnowcurrently
7085
Include/internal/pycore_pymem.h @ericsnowcurrently
86+
Include/internal/pycore_stackref.h @Fidget-Spinner
7187
Modules/main.c @ericsnowcurrently
7288
Programs/_bootstrap_python.c @ericsnowcurrently
7389
Programs/python.c @ericsnowcurrently
7490
Tools/build/generate_global_objects.py @ericsnowcurrently
7591

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+
76103
# Exceptions
77-
Lib/traceback.py @iritkatriel
78104
Lib/test/test_except*.py @iritkatriel
79-
Lib/test/test_traceback.py @iritkatriel
80105
Objects/exceptions.c @iritkatriel
81-
Python/traceback.c @iritkatriel
82106

83-
# Hashing
84-
**/*hashlib* @gpshead @tiran
107+
# Hashing & cryptographic primitives
108+
**/*hashlib* @gpshead @tiran @picnixz
85109
**/*pyhash* @gpshead @tiran
86-
**/sha* @gpshead @tiran
87-
Modules/md5* @gpshead @tiran
88-
**/*blake* @gpshead @tiran
89-
Modules/_blake2/** @gpshead @tiran
110+
**/sha* @gpshead @tiran @picnixz
111+
Modules/md5* @gpshead @tiran @picnixz
112+
**/*blake* @gpshead @tiran @picnixz
90113
Modules/_hacl/** @gpshead
114+
**/*hmac* @gpshead @picnixz
91115

92116
# logging
93117
**/*logging* @vsajip
94118

95119
# venv
96-
**/*venv* @vsajip
120+
**/*venv* @vsajip @FFY00
97121

98122
# Launcher
99123
/PC/launcher.c @vsajip
@@ -152,13 +176,15 @@ Include/internal/pycore_time.h @pganssle @abalkin
152176
/Lib/test/test_tokenize.py @pablogsal @lysnikolaou
153177

154178
# Code generator
155-
/Tools/cases_generator/ @gvanrossum
179+
/Tools/cases_generator/ @markshannon
156180

157181
# AST
158-
Python/ast.c @isidentical
159-
Parser/asdl.py @isidentical
160-
Parser/asdl_c.py @isidentical
161-
Lib/ast.py @isidentical
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
162188

163189
# Mock
164190
/Lib/unittest/mock.py @cjw296
@@ -175,6 +201,10 @@ Lib/ast.py @isidentical
175201
/Lib/test/test_subprocess.py @gpshead
176202
/Modules/*subprocess* @gpshead
177203

204+
# debugger
205+
**/*pdb* @gaogaotiantian
206+
**/*bdb* @gaogaotiantian
207+
178208
# Limited C API & stable ABI
179209
Tools/build/stable_abi.py @encukou
180210
Misc/stable_abi.toml @encukou
@@ -196,18 +226,19 @@ Doc/c-api/stable.rst @encukou
196226
**/*itertools* @rhettinger
197227
**/*collections* @rhettinger
198228
**/*random* @rhettinger
199-
**/*queue* @rhettinger
200229
**/*bisect* @rhettinger
201230
**/*heapq* @rhettinger
202231
**/*functools* @rhettinger
203-
**/*decimal* @rhettinger
204232

205233
**/*dataclasses* @ericvsmith
206234

207235
**/*ensurepip* @pfmoore @pradyunsg
208236

237+
/Doc/library/idle.rst @terryjreedy
209238
**/*idlelib* @terryjreedy
239+
**/*turtledemo* @terryjreedy
210240

241+
**/*annotationlib* @JelleZijlstra
211242
**/*typing* @JelleZijlstra @AlexWaygood
212243

213244
**/*ftplib @giampaolo
@@ -242,12 +273,12 @@ Doc/howto/clinic.rst @erlend-aasland
242273
**/*interpreteridobject.* @ericsnowcurrently
243274
**/*crossinterp* @ericsnowcurrently
244275
Lib/test/support/interpreters/ @ericsnowcurrently
245-
Modules/_xx*interp*module.c @ericsnowcurrently
276+
Modules/_interp*module.c @ericsnowcurrently
246277
Lib/test/test_interpreters/ @ericsnowcurrently
247278

248279
# Android
249-
**/*Android* @mhsmith
250-
**/*android* @mhsmith
280+
**/*Android* @mhsmith @freakboy3742
281+
**/*android* @mhsmith @freakboy3742
251282

252283
# iOS (but not termios)
253284
**/iOS* @freakboy3742
@@ -258,7 +289,7 @@ Lib/test/test_interpreters/ @ericsnowcurrently
258289
**/*-ios* @freakboy3742
259290

260291
# WebAssembly
261-
/Tools/wasm/ @brettcannon
292+
/Tools/wasm/ @brettcannon @freakboy3742
262293

263294
# SBOM
264295
/Misc/externals.spdx.json @sethmlarson
@@ -268,3 +299,12 @@ Lib/test/test_interpreters/ @ericsnowcurrently
268299
# Config Parser
269300
Lib/configparser.py @jaraco
270301
Lib/test/test_configparser.py @jaraco
302+
303+
# Doc sections
304+
Doc/reference/ @willingc @AA-Turner
305+
306+
**/*weakref* @kumaraditya303
307+
308+
# Colorize
309+
Lib/_colorize.py @hugovk
310+
Lib/test/test__colorize.py @hugovk

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