Skip to content

Commit c132a60

Browse files
authored
Merge branch 'main' into fnmatch-filterfalse
2 parents ddeea64 + d4c72fe commit c132a60

File tree

2,104 files changed

+146497
-83920
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,104 files changed

+146497
-83920
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: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,17 @@ 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
@@ -72,6 +75,7 @@ Include/internal/pycore_freelist.h @ericsnowcurrently
7275
Include/internal/pycore_global_objects.h @ericsnowcurrently
7376
Include/internal/pycore_obmalloc.h @ericsnowcurrently
7477
Include/internal/pycore_pymem.h @ericsnowcurrently
78+
Include/internal/pycore_stackref.h @Fidget-Spinner
7579
Modules/main.c @ericsnowcurrently
7680
Programs/_bootstrap_python.c @ericsnowcurrently
7781
Programs/python.c @ericsnowcurrently
@@ -87,7 +91,6 @@ Objects/exceptions.c @iritkatriel
8791
**/sha* @gpshead @tiran
8892
Modules/md5* @gpshead @tiran
8993
**/*blake* @gpshead @tiran
90-
Modules/_blake2/** @gpshead @tiran
9194
Modules/_hacl/** @gpshead
9295

9396
# logging
@@ -156,10 +159,12 @@ Include/internal/pycore_time.h @pganssle @abalkin
156159
/Tools/cases_generator/ @markshannon
157160

158161
# AST
159-
Python/ast.c @isidentical @JelleZijlstra
160-
Parser/asdl.py @isidentical @JelleZijlstra
161-
Parser/asdl_c.py @isidentical @JelleZijlstra
162-
Lib/ast.py @isidentical @JelleZijlstra
162+
Python/ast.c @isidentical @JelleZijlstra @eclips4
163+
Python/ast_opt.c @isidentical @eclips4
164+
Parser/asdl.py @isidentical @JelleZijlstra @eclips4
165+
Parser/asdl_c.py @isidentical @JelleZijlstra @eclips4
166+
Lib/ast.py @isidentical @JelleZijlstra @eclips4
167+
Lib/test/test_ast/ @eclips4
163168

164169
# Mock
165170
/Lib/unittest/mock.py @cjw296
@@ -204,15 +209,16 @@ Doc/c-api/stable.rst @encukou
204209
**/*bisect* @rhettinger
205210
**/*heapq* @rhettinger
206211
**/*functools* @rhettinger
207-
**/*decimal* @rhettinger
208212

209213
**/*dataclasses* @ericvsmith
210214

211215
**/*ensurepip* @pfmoore @pradyunsg
212216

213-
**/*idlelib* @terryjreedy
214217
/Doc/library/idle.rst @terryjreedy
218+
**/*idlelib* @terryjreedy
219+
**/*turtledemo* @terryjreedy
215220

221+
**/*annotationlib* @JelleZijlstra
216222
**/*typing* @JelleZijlstra @AlexWaygood
217223

218224
**/*ftplib @giampaolo
@@ -251,8 +257,8 @@ Modules/_interp*module.c @ericsnowcurrently
251257
Lib/test/test_interpreters/ @ericsnowcurrently
252258

253259
# Android
254-
**/*Android* @mhsmith
255-
**/*android* @mhsmith
260+
**/*Android* @mhsmith @freakboy3742
261+
**/*android* @mhsmith @freakboy3742
256262

257263
# iOS (but not termios)
258264
**/iOS* @freakboy3742
@@ -263,7 +269,7 @@ Lib/test/test_interpreters/ @ericsnowcurrently
263269
**/*-ios* @freakboy3742
264270

265271
# WebAssembly
266-
/Tools/wasm/ @brettcannon
272+
/Tools/wasm/ @brettcannon @freakboy3742
267273

268274
# SBOM
269275
/Misc/externals.spdx.json @sethmlarson
@@ -273,3 +279,8 @@ Lib/test/test_interpreters/ @ericsnowcurrently
273279
# Config Parser
274280
Lib/configparser.py @jaraco
275281
Lib/test/test_configparser.py @jaraco
282+
283+
# Doc sections
284+
Doc/reference/ @willingc
285+
286+
**/*weakref* @kumaraditya303

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