Skip to content

Commit ae1d6ca

Browse files
committed
Merge branch 'main' into fix-ntpath.abspath
2 parents 335a737 + eafd14f commit ae1d6ca

File tree

2,038 files changed

+133629
-82273
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,038 files changed

+133629
-82273
lines changed

.azure-pipelines/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

.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: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

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

1719
# asyncio
1820
**/*asyncio* @1st1 @asvetlov @gvanrossum @kumaraditya303 @willingc
@@ -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,17 +72,15 @@ 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
@@ -155,10 +157,12 @@ Include/internal/pycore_time.h @pganssle @abalkin
155157
/Tools/cases_generator/ @markshannon
156158

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

163167
# Mock
164168
/Lib/unittest/mock.py @cjw296
@@ -175,6 +179,10 @@ Lib/ast.py @isidentical
175179
/Lib/test/test_subprocess.py @gpshead
176180
/Modules/*subprocess* @gpshead
177181

182+
# debugger
183+
**/*pdb* @gaogaotiantian
184+
**/*bdb* @gaogaotiantian
185+
178186
# Limited C API & stable ABI
179187
Tools/build/stable_abi.py @encukou
180188
Misc/stable_abi.toml @encukou
@@ -196,18 +204,19 @@ Doc/c-api/stable.rst @encukou
196204
**/*itertools* @rhettinger
197205
**/*collections* @rhettinger
198206
**/*random* @rhettinger
199-
**/*queue* @rhettinger
200207
**/*bisect* @rhettinger
201208
**/*heapq* @rhettinger
202209
**/*functools* @rhettinger
203-
**/*decimal* @rhettinger
204210

205211
**/*dataclasses* @ericvsmith
206212

207213
**/*ensurepip* @pfmoore @pradyunsg
208214

215+
/Doc/library/idle.rst @terryjreedy
209216
**/*idlelib* @terryjreedy
217+
**/*turtledemo* @terryjreedy
210218

219+
**/*annotationlib* @JelleZijlstra
211220
**/*typing* @JelleZijlstra @AlexWaygood
212221

213222
**/*ftplib @giampaolo
@@ -242,7 +251,7 @@ Doc/howto/clinic.rst @erlend-aasland
242251
**/*interpreteridobject.* @ericsnowcurrently
243252
**/*crossinterp* @ericsnowcurrently
244253
Lib/test/support/interpreters/ @ericsnowcurrently
245-
Modules/_xx*interp*module.c @ericsnowcurrently
254+
Modules/_interp*module.c @ericsnowcurrently
246255
Lib/test/test_interpreters/ @ericsnowcurrently
247256

248257
# Android
@@ -268,3 +277,6 @@ Lib/test/test_interpreters/ @ericsnowcurrently
268277
# Config Parser
269278
Lib/configparser.py @jaraco
270279
Lib/test/test_configparser.py @jaraco
280+
281+
# Doc sections
282+
Doc/reference/ @willingc

.github/ISSUE_TEMPLATE/crash.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ body:
3232
- "3.10"
3333
- "3.11"
3434
- "3.12"
35+
- "3.13"
3536
- "CPython main branch"
3637
validations:
3738
required: true

0 commit comments

Comments
 (0)