Skip to content

Commit dd3e7c0

Browse files
authored
Merge branch 'main' into datetime_doc
2 parents c278f0a + 5fc889f commit dd3e7c0

File tree

2,898 files changed

+375190
-182500
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,898 files changed

+375190
-182500
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: 88 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -5,48 +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
49+
Lib/_pyrepl/* @pablogsal @lysnikolaou @ambv
4250
Lib/test/test_patma.py @brandtbucher
4351
Lib/test/test_type_*.py @JelleZijlstra
44-
Lib/test/test_capi/test_misc.py @markshannon @gvanrossum
52+
Lib/test/test_capi/test_misc.py @markshannon
53+
Lib/test/test_pyrepl/* @pablogsal @lysnikolaou @ambv
4554
Tools/c-analyzer/ @ericsnowcurrently
4655

4756
# dbm
4857
**/*dbm* @corona10 @erlend-aasland @serhiy-storchaka
4958

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+
5067
# runtime state/lifecycle
5168
**/*pylifecycle* @ericsnowcurrently
5269
**/*pystate* @ericsnowcurrently
@@ -66,32 +83,42 @@ Include/internal/pycore_freelist.h @ericsnowcurrently
6683
Include/internal/pycore_global_objects.h @ericsnowcurrently
6784
Include/internal/pycore_obmalloc.h @ericsnowcurrently
6885
Include/internal/pycore_pymem.h @ericsnowcurrently
86+
Include/internal/pycore_stackref.h @Fidget-Spinner
6987
Modules/main.c @ericsnowcurrently
7088
Programs/_bootstrap_python.c @ericsnowcurrently
7189
Programs/python.c @ericsnowcurrently
7290
Tools/build/generate_global_objects.py @ericsnowcurrently
7391

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+
74103
# Exceptions
75-
Lib/traceback.py @iritkatriel
76104
Lib/test/test_except*.py @iritkatriel
77-
Lib/test/test_traceback.py @iritkatriel
78105
Objects/exceptions.c @iritkatriel
79-
Python/traceback.c @iritkatriel
80106

81-
# Hashing
82-
**/*hashlib* @gpshead @tiran
107+
# Hashing & cryptographic primitives
108+
**/*hashlib* @gpshead @tiran @picnixz
109+
**/*hashopenssl* @gpshead @tiran @picnixz
83110
**/*pyhash* @gpshead @tiran
84-
**/sha* @gpshead @tiran
85-
Modules/md5* @gpshead @tiran
86-
**/*blake* @gpshead @tiran
87-
Modules/_blake2/** @gpshead @tiran
111+
**/sha* @gpshead @tiran @picnixz
112+
Modules/md5* @gpshead @tiran @picnixz
113+
**/*blake* @gpshead @tiran @picnixz
88114
Modules/_hacl/** @gpshead
115+
**/*hmac* @gpshead @picnixz
89116

90117
# logging
91118
**/*logging* @vsajip
92119

93120
# venv
94-
**/*venv* @vsajip
121+
**/*venv* @vsajip @FFY00
95122

96123
# Launcher
97124
/PC/launcher.c @vsajip
@@ -119,7 +146,7 @@ Python/dynload_*.c @ericsnowcurrently
119146
Lib/test/test_module/ @ericsnowcurrently
120147
Doc/c-api/module.rst @ericsnowcurrently
121148
**/*importlib/resources/* @jaraco @warsaw @FFY00
122-
**/importlib/metadata/* @jaraco @warsaw
149+
**/*importlib/metadata/* @jaraco @warsaw
123150

124151
# Dates and times
125152
**/*datetime* @pganssle @abalkin
@@ -150,13 +177,15 @@ Include/internal/pycore_time.h @pganssle @abalkin
150177
/Lib/test/test_tokenize.py @pablogsal @lysnikolaou
151178

152179
# Code generator
153-
/Tools/cases_generator/ @gvanrossum
180+
/Tools/cases_generator/ @markshannon
154181

155182
# AST
156-
Python/ast.c @isidentical
157-
Parser/asdl.py @isidentical
158-
Parser/asdl_c.py @isidentical
159-
Lib/ast.py @isidentical
183+
Python/ast.c @isidentical @JelleZijlstra @eclips4
184+
Python/ast_opt.c @isidentical @eclips4
185+
Parser/asdl.py @isidentical @JelleZijlstra @eclips4
186+
Parser/asdl_c.py @isidentical @JelleZijlstra @eclips4
187+
Lib/ast.py @isidentical @JelleZijlstra @eclips4
188+
Lib/test/test_ast/ @eclips4
160189

161190
# Mock
162191
/Lib/unittest/mock.py @cjw296
@@ -173,6 +202,10 @@ Lib/ast.py @isidentical
173202
/Lib/test/test_subprocess.py @gpshead
174203
/Modules/*subprocess* @gpshead
175204

205+
# debugger
206+
**/*pdb* @gaogaotiantian
207+
**/*bdb* @gaogaotiantian
208+
176209
# Limited C API & stable ABI
177210
Tools/build/stable_abi.py @encukou
178211
Misc/stable_abi.toml @encukou
@@ -194,18 +227,19 @@ Doc/c-api/stable.rst @encukou
194227
**/*itertools* @rhettinger
195228
**/*collections* @rhettinger
196229
**/*random* @rhettinger
197-
**/*queue* @rhettinger
198230
**/*bisect* @rhettinger
199231
**/*heapq* @rhettinger
200232
**/*functools* @rhettinger
201-
**/*decimal* @rhettinger
202233

203234
**/*dataclasses* @ericvsmith
204235

205236
**/*ensurepip* @pfmoore @pradyunsg
206237

238+
/Doc/library/idle.rst @terryjreedy
207239
**/*idlelib* @terryjreedy
240+
**/*turtledemo* @terryjreedy
208241

242+
**/*annotationlib* @JelleZijlstra
209243
**/*typing* @JelleZijlstra @AlexWaygood
210244

211245
**/*ftplib @giampaolo
@@ -240,11 +274,23 @@ Doc/howto/clinic.rst @erlend-aasland
240274
**/*interpreteridobject.* @ericsnowcurrently
241275
**/*crossinterp* @ericsnowcurrently
242276
Lib/test/support/interpreters/ @ericsnowcurrently
243-
Modules/_xx*interp*module.c @ericsnowcurrently
277+
Modules/_interp*module.c @ericsnowcurrently
244278
Lib/test/test_interpreters/ @ericsnowcurrently
245279

280+
# Android
281+
**/*Android* @mhsmith @freakboy3742
282+
**/*android* @mhsmith @freakboy3742
283+
284+
# iOS (but not termios)
285+
**/iOS* @freakboy3742
286+
**/ios* @freakboy3742
287+
**/*_iOS* @freakboy3742
288+
**/*_ios* @freakboy3742
289+
**/*-iOS* @freakboy3742
290+
**/*-ios* @freakboy3742
291+
246292
# WebAssembly
247-
/Tools/wasm/ @brettcannon
293+
/Tools/wasm/ @brettcannon @freakboy3742
248294

249295
# SBOM
250296
/Misc/externals.spdx.json @sethmlarson
@@ -254,3 +300,15 @@ Lib/test/test_interpreters/ @ericsnowcurrently
254300
# Config Parser
255301
Lib/configparser.py @jaraco
256302
Lib/test/test_configparser.py @jaraco
303+
304+
# Doc sections
305+
Doc/reference/ @willingc @AA-Turner
306+
307+
**/*weakref* @kumaraditya303
308+
309+
# Colorize
310+
Lib/_colorize.py @hugovk
311+
Lib/test/test__colorize.py @hugovk
312+
313+
# Fuzzing
314+
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)