Skip to content

Commit 0df909e

Browse files
Pull in main
2 parents 033e017 + 0b28ea4 commit 0df909e

File tree

2,649 files changed

+188508
-99202
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,649 files changed

+188508
-99202
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: 45 additions & 17 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
@@ -29,19 +31,23 @@ Objects/type* @markshannon
2931
Objects/codeobject.c @markshannon
3032
Objects/frameobject.c @markshannon
3133
Objects/call.c @markshannon
32-
Python/ceval*.c @markshannon @gvanrossum
33-
Python/ceval*.h @markshannon @gvanrossum
34+
Python/ceval*.c @markshannon
35+
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
38-
Python/bytecodes.c @markshannon @gvanrossum
39-
Python/optimizer*.c @markshannon @gvanrossum
40+
Python/instruction_sequence.c @iritkatriel
41+
Python/bytecodes.c @markshannon
42+
Python/optimizer*.c @markshannon
4043
Python/optimizer_analysis.c @Fidget-Spinner
4144
Python/optimizer_bytecodes.c @Fidget-Spinner
45+
Python/symtable.c @JelleZijlstra @carljm
46+
Lib/_pyrepl/* @pablogsal @lysnikolaou @ambv
4247
Lib/test/test_patma.py @brandtbucher
4348
Lib/test/test_type_*.py @JelleZijlstra
44-
Lib/test/test_capi/test_misc.py @markshannon @gvanrossum
49+
Lib/test/test_capi/test_misc.py @markshannon
50+
Lib/test/test_pyrepl/* @pablogsal @lysnikolaou @ambv
4551
Tools/c-analyzer/ @ericsnowcurrently
4652

4753
# dbm
@@ -66,17 +72,15 @@ Include/internal/pycore_freelist.h @ericsnowcurrently
6672
Include/internal/pycore_global_objects.h @ericsnowcurrently
6773
Include/internal/pycore_obmalloc.h @ericsnowcurrently
6874
Include/internal/pycore_pymem.h @ericsnowcurrently
75+
Include/internal/pycore_stackref.h @Fidget-Spinner
6976
Modules/main.c @ericsnowcurrently
7077
Programs/_bootstrap_python.c @ericsnowcurrently
7178
Programs/python.c @ericsnowcurrently
7279
Tools/build/generate_global_objects.py @ericsnowcurrently
7380

7481
# Exceptions
75-
Lib/traceback.py @iritkatriel
7682
Lib/test/test_except*.py @iritkatriel
77-
Lib/test/test_traceback.py @iritkatriel
7883
Objects/exceptions.c @iritkatriel
79-
Python/traceback.c @iritkatriel
8084

8185
# Hashing
8286
**/*hashlib* @gpshead @tiran
@@ -150,13 +154,15 @@ Include/internal/pycore_time.h @pganssle @abalkin
150154
/Lib/test/test_tokenize.py @pablogsal @lysnikolaou
151155

152156
# Code generator
153-
/Tools/cases_generator/ @gvanrossum
157+
/Tools/cases_generator/ @markshannon
154158

155159
# AST
156-
Python/ast.c @isidentical
157-
Parser/asdl.py @isidentical
158-
Parser/asdl_c.py @isidentical
159-
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
160166

161167
# Mock
162168
/Lib/unittest/mock.py @cjw296
@@ -173,6 +179,10 @@ Lib/ast.py @isidentical
173179
/Lib/test/test_subprocess.py @gpshead
174180
/Modules/*subprocess* @gpshead
175181

182+
# debugger
183+
**/*pdb* @gaogaotiantian
184+
**/*bdb* @gaogaotiantian
185+
176186
# Limited C API & stable ABI
177187
Tools/build/stable_abi.py @encukou
178188
Misc/stable_abi.toml @encukou
@@ -194,18 +204,19 @@ Doc/c-api/stable.rst @encukou
194204
**/*itertools* @rhettinger
195205
**/*collections* @rhettinger
196206
**/*random* @rhettinger
197-
**/*queue* @rhettinger
198207
**/*bisect* @rhettinger
199208
**/*heapq* @rhettinger
200209
**/*functools* @rhettinger
201-
**/*decimal* @rhettinger
202210

203211
**/*dataclasses* @ericvsmith
204212

205213
**/*ensurepip* @pfmoore @pradyunsg
206214

215+
/Doc/library/idle.rst @terryjreedy
207216
**/*idlelib* @terryjreedy
217+
**/*turtledemo* @terryjreedy
208218

219+
**/*annotationlib* @JelleZijlstra
209220
**/*typing* @JelleZijlstra @AlexWaygood
210221

211222
**/*ftplib @giampaolo
@@ -240,9 +251,21 @@ Doc/howto/clinic.rst @erlend-aasland
240251
**/*interpreteridobject.* @ericsnowcurrently
241252
**/*crossinterp* @ericsnowcurrently
242253
Lib/test/support/interpreters/ @ericsnowcurrently
243-
Modules/_xx*interp*module.c @ericsnowcurrently
254+
Modules/_interp*module.c @ericsnowcurrently
244255
Lib/test/test_interpreters/ @ericsnowcurrently
245256

257+
# Android
258+
**/*Android* @mhsmith
259+
**/*android* @mhsmith
260+
261+
# iOS (but not termios)
262+
**/iOS* @freakboy3742
263+
**/ios* @freakboy3742
264+
**/*_iOS* @freakboy3742
265+
**/*_ios* @freakboy3742
266+
**/*-iOS* @freakboy3742
267+
**/*-ios* @freakboy3742
268+
246269
# WebAssembly
247270
/Tools/wasm/ @brettcannon
248271

@@ -254,3 +277,8 @@ Lib/test/test_interpreters/ @ericsnowcurrently
254277
# Config Parser
255278
Lib/configparser.py @jaraco
256279
Lib/test/test_configparser.py @jaraco
280+
281+
# Doc sections
282+
Doc/reference/ @willingc
283+
284+
**/*weakref* @kumaraditya303

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