Skip to content

Commit 46bff41

Browse files
authored
Merge branch 'main' into basic-iso-date
2 parents 9686b17 + d4c72fe commit 46bff41

File tree

2,147 files changed

+162034
-91252
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,147 files changed

+162034
-91252
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: 27 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,20 @@
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
@@ -70,6 +75,7 @@ Include/internal/pycore_freelist.h @ericsnowcurrently
7075
Include/internal/pycore_global_objects.h @ericsnowcurrently
7176
Include/internal/pycore_obmalloc.h @ericsnowcurrently
7277
Include/internal/pycore_pymem.h @ericsnowcurrently
78+
Include/internal/pycore_stackref.h @Fidget-Spinner
7379
Modules/main.c @ericsnowcurrently
7480
Programs/_bootstrap_python.c @ericsnowcurrently
7581
Programs/python.c @ericsnowcurrently
@@ -85,7 +91,6 @@ Objects/exceptions.c @iritkatriel
8591
**/sha* @gpshead @tiran
8692
Modules/md5* @gpshead @tiran
8793
**/*blake* @gpshead @tiran
88-
Modules/_blake2/** @gpshead @tiran
8994
Modules/_hacl/** @gpshead
9095

9196
# logging
@@ -154,10 +159,12 @@ Include/internal/pycore_time.h @pganssle @abalkin
154159
/Tools/cases_generator/ @markshannon
155160

156161
# 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
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
161168

162169
# Mock
163170
/Lib/unittest/mock.py @cjw296
@@ -199,18 +206,19 @@ Doc/c-api/stable.rst @encukou
199206
**/*itertools* @rhettinger
200207
**/*collections* @rhettinger
201208
**/*random* @rhettinger
202-
**/*queue* @rhettinger
203209
**/*bisect* @rhettinger
204210
**/*heapq* @rhettinger
205211
**/*functools* @rhettinger
206-
**/*decimal* @rhettinger
207212

208213
**/*dataclasses* @ericvsmith
209214

210215
**/*ensurepip* @pfmoore @pradyunsg
211216

217+
/Doc/library/idle.rst @terryjreedy
212218
**/*idlelib* @terryjreedy
219+
**/*turtledemo* @terryjreedy
213220

221+
**/*annotationlib* @JelleZijlstra
214222
**/*typing* @JelleZijlstra @AlexWaygood
215223

216224
**/*ftplib @giampaolo
@@ -249,8 +257,8 @@ Modules/_interp*module.c @ericsnowcurrently
249257
Lib/test/test_interpreters/ @ericsnowcurrently
250258

251259
# Android
252-
**/*Android* @mhsmith
253-
**/*android* @mhsmith
260+
**/*Android* @mhsmith @freakboy3742
261+
**/*android* @mhsmith @freakboy3742
254262

255263
# iOS (but not termios)
256264
**/iOS* @freakboy3742
@@ -261,7 +269,7 @@ Lib/test/test_interpreters/ @ericsnowcurrently
261269
**/*-ios* @freakboy3742
262270

263271
# WebAssembly
264-
/Tools/wasm/ @brettcannon
272+
/Tools/wasm/ @brettcannon @freakboy3742
265273

266274
# SBOM
267275
/Misc/externals.spdx.json @sethmlarson
@@ -271,3 +279,8 @@ Lib/test/test_interpreters/ @ericsnowcurrently
271279
# Config Parser
272280
Lib/configparser.py @jaraco
273281
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)