Skip to content

Commit c68f49e

Browse files
authored
Merge branch 'main' into fix-ntpath.abspath-2
2 parents 9581f83 + bf224bd commit c68f49e

File tree

2,105 files changed

+164747
-91881
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,105 files changed

+164747
-91881
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: 29 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@
1313

1414
# Build system
1515
configure* @erlend-aasland @corona10
16+
Makefile.pre.in @erlend-aasland
17+
Modules/Setup* @erlend-aasland
1618

1719
# asyncio
18-
**/*asyncio* @1st1 @asvetlov @gvanrossum @kumaraditya303 @willingc
20+
**/*asyncio* @1st1 @asvetlov @kumaraditya303 @willingc
1921

2022
# Core
2123
**/*context* @1st1
@@ -31,14 +33,16 @@ Objects/frameobject.c @markshannon
3133
Objects/call.c @markshannon
3234
Python/ceval*.c @markshannon
3335
Python/ceval*.h @markshannon
36+
Python/codegen.c @markshannon @iritkatriel
3437
Python/compile.c @markshannon @iritkatriel
3538
Python/assemble.c @markshannon @iritkatriel
3639
Python/flowgraph.c @markshannon @iritkatriel
37-
Python/ast_opt.c @isidentical
40+
Python/instruction_sequence.c @iritkatriel
3841
Python/bytecodes.c @markshannon
3942
Python/optimizer*.c @markshannon
4043
Python/optimizer_analysis.c @Fidget-Spinner
4144
Python/optimizer_bytecodes.c @Fidget-Spinner
45+
Python/symtable.c @JelleZijlstra @carljm
4246
Lib/_pyrepl/* @pablogsal @lysnikolaou @ambv
4347
Lib/test/test_patma.py @brandtbucher
4448
Lib/test/test_type_*.py @JelleZijlstra
@@ -68,25 +72,22 @@ Include/internal/pycore_freelist.h @ericsnowcurrently
6872
Include/internal/pycore_global_objects.h @ericsnowcurrently
6973
Include/internal/pycore_obmalloc.h @ericsnowcurrently
7074
Include/internal/pycore_pymem.h @ericsnowcurrently
75+
Include/internal/pycore_stackref.h @Fidget-Spinner
7176
Modules/main.c @ericsnowcurrently
7277
Programs/_bootstrap_python.c @ericsnowcurrently
7378
Programs/python.c @ericsnowcurrently
7479
Tools/build/generate_global_objects.py @ericsnowcurrently
7580

7681
# Exceptions
77-
Lib/traceback.py @iritkatriel
7882
Lib/test/test_except*.py @iritkatriel
79-
Lib/test/test_traceback.py @iritkatriel
8083
Objects/exceptions.c @iritkatriel
81-
Python/traceback.c @iritkatriel
8284

8385
# Hashing
8486
**/*hashlib* @gpshead @tiran
8587
**/*pyhash* @gpshead @tiran
8688
**/sha* @gpshead @tiran
8789
Modules/md5* @gpshead @tiran
8890
**/*blake* @gpshead @tiran
89-
Modules/_blake2/** @gpshead @tiran
9091
Modules/_hacl/** @gpshead
9192

9293
# logging
@@ -155,10 +156,12 @@ Include/internal/pycore_time.h @pganssle @abalkin
155156
/Tools/cases_generator/ @markshannon
156157

157158
# AST
158-
Python/ast.c @isidentical
159-
Parser/asdl.py @isidentical
160-
Parser/asdl_c.py @isidentical
161-
Lib/ast.py @isidentical
159+
Python/ast.c @isidentical @JelleZijlstra @eclips4
160+
Python/ast_opt.c @isidentical @eclips4
161+
Parser/asdl.py @isidentical @JelleZijlstra @eclips4
162+
Parser/asdl_c.py @isidentical @JelleZijlstra @eclips4
163+
Lib/ast.py @isidentical @JelleZijlstra @eclips4
164+
Lib/test/test_ast/ @eclips4
162165

163166
# Mock
164167
/Lib/unittest/mock.py @cjw296
@@ -175,6 +178,10 @@ Lib/ast.py @isidentical
175178
/Lib/test/test_subprocess.py @gpshead
176179
/Modules/*subprocess* @gpshead
177180

181+
# debugger
182+
**/*pdb* @gaogaotiantian
183+
**/*bdb* @gaogaotiantian
184+
178185
# Limited C API & stable ABI
179186
Tools/build/stable_abi.py @encukou
180187
Misc/stable_abi.toml @encukou
@@ -196,18 +203,19 @@ Doc/c-api/stable.rst @encukou
196203
**/*itertools* @rhettinger
197204
**/*collections* @rhettinger
198205
**/*random* @rhettinger
199-
**/*queue* @rhettinger
200206
**/*bisect* @rhettinger
201207
**/*heapq* @rhettinger
202208
**/*functools* @rhettinger
203-
**/*decimal* @rhettinger
204209

205210
**/*dataclasses* @ericvsmith
206211

207212
**/*ensurepip* @pfmoore @pradyunsg
208213

214+
/Doc/library/idle.rst @terryjreedy
209215
**/*idlelib* @terryjreedy
216+
**/*turtledemo* @terryjreedy
210217

218+
**/*annotationlib* @JelleZijlstra
211219
**/*typing* @JelleZijlstra @AlexWaygood
212220

213221
**/*ftplib @giampaolo
@@ -242,12 +250,12 @@ Doc/howto/clinic.rst @erlend-aasland
242250
**/*interpreteridobject.* @ericsnowcurrently
243251
**/*crossinterp* @ericsnowcurrently
244252
Lib/test/support/interpreters/ @ericsnowcurrently
245-
Modules/_xx*interp*module.c @ericsnowcurrently
253+
Modules/_interp*module.c @ericsnowcurrently
246254
Lib/test/test_interpreters/ @ericsnowcurrently
247255

248256
# Android
249-
**/*Android* @mhsmith
250-
**/*android* @mhsmith
257+
**/*Android* @mhsmith @freakboy3742
258+
**/*android* @mhsmith @freakboy3742
251259

252260
# iOS (but not termios)
253261
**/iOS* @freakboy3742
@@ -258,7 +266,7 @@ Lib/test/test_interpreters/ @ericsnowcurrently
258266
**/*-ios* @freakboy3742
259267

260268
# WebAssembly
261-
/Tools/wasm/ @brettcannon
269+
/Tools/wasm/ @brettcannon @freakboy3742
262270

263271
# SBOM
264272
/Misc/externals.spdx.json @sethmlarson
@@ -268,3 +276,8 @@ Lib/test/test_interpreters/ @ericsnowcurrently
268276
# Config Parser
269277
Lib/configparser.py @jaraco
270278
Lib/test/test_configparser.py @jaraco
279+
280+
# Doc sections
281+
Doc/reference/ @willingc
282+
283+
**/*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)