Skip to content

Commit 0f53760

Browse files
authored
Merge branch 'main' into pythongh-123987/sentinel-in-namespace-path
2 parents 1c6608a + fccbfc4 commit 0f53760

File tree

2,180 files changed

+153035
-95527
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,180 files changed

+153035
-95527
lines changed

.azure-pipelines/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
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

.devcontainer/Dockerfile

-24
This file was deleted.

.devcontainer/devcontainer.json

+1-3
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",

.github/CODEOWNERS

+50-21
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,35 @@ 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
107+
# Hashing & cryptographic primitives
108+
**/*hashlib* @gpshead @tiran @picnixz
87109
**/*pyhash* @gpshead @tiran
88-
**/sha* @gpshead @tiran
89-
Modules/md5* @gpshead @tiran
90-
**/*blake* @gpshead @tiran
91-
Modules/_blake2/** @gpshead @tiran
110+
**/sha* @gpshead @tiran @picnixz
111+
Modules/md5* @gpshead @tiran @picnixz
112+
**/*blake* @gpshead @tiran @picnixz
92113
Modules/_hacl/** @gpshead
114+
**/*hmac* @gpshead @picnixz
93115

94116
# logging
95117
**/*logging* @vsajip
96118

97119
# venv
98-
**/*venv* @vsajip
120+
**/*venv* @vsajip @FFY00
99121

100122
# Launcher
101123
/PC/launcher.c @vsajip
@@ -157,10 +179,12 @@ Include/internal/pycore_time.h @pganssle @abalkin
157179
/Tools/cases_generator/ @markshannon
158180

159181
# 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
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
164188

165189
# Mock
166190
/Lib/unittest/mock.py @cjw296
@@ -205,7 +229,6 @@ Doc/c-api/stable.rst @encukou
205229
**/*bisect* @rhettinger
206230
**/*heapq* @rhettinger
207231
**/*functools* @rhettinger
208-
**/*decimal* @rhettinger
209232

210233
**/*dataclasses* @ericvsmith
211234

@@ -254,8 +277,8 @@ Modules/_interp*module.c @ericsnowcurrently
254277
Lib/test/test_interpreters/ @ericsnowcurrently
255278

256279
# Android
257-
**/*Android* @mhsmith
258-
**/*android* @mhsmith
280+
**/*Android* @mhsmith @freakboy3742
281+
**/*android* @mhsmith @freakboy3742
259282

260283
# iOS (but not termios)
261284
**/iOS* @freakboy3742
@@ -266,7 +289,7 @@ Lib/test/test_interpreters/ @ericsnowcurrently
266289
**/*-ios* @freakboy3742
267290

268291
# WebAssembly
269-
/Tools/wasm/ @brettcannon
292+
/Tools/wasm/ @brettcannon @freakboy3742
270293

271294
# SBOM
272295
/Misc/externals.spdx.json @sethmlarson
@@ -278,4 +301,10 @@ Lib/configparser.py @jaraco
278301
Lib/test/test_configparser.py @jaraco
279302

280303
# Doc sections
281-
Doc/reference/ @willingc
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

+1-1
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

+2-1
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

.github/actionlint.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
self-hosted-runner:
2+
labels: ["windows-aarch64"]
3+
4+
config-variables: null
5+
6+
paths:
7+
.github/workflows/**/*.yml:
8+
ignore:
9+
- 1st argument of function call is not assignable
10+
- SC2(015|038|086|091|097|098|129|155)

0 commit comments

Comments
 (0)