Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5496d20

Browse filesBrowse files
authored
Merge branch 'main' into frame-enum-confusion-2
2 parents e50936a + 58e9f95 commit 5496d20
Copy full SHA for 5496d20

File tree

Expand file treeCollapse file tree

1,963 files changed

+89127
-45066
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

1,963 files changed

+89127
-45066
lines changed

‎.azure-pipelines/ci.yml

Copy file name to clipboardExpand all lines: .azure-pipelines/ci.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
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

‎.devcontainer/Dockerfile

Copy file name to clipboardExpand all lines: .devcontainer/Dockerfile
-24Lines changed: 0 additions & 24 deletions
This file was deleted.

‎.devcontainer/devcontainer.json

Copy file name to clipboardExpand all lines: .devcontainer/devcontainer.json
+1-3Lines 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",

‎.github/CODEOWNERS

Copy file name to clipboardExpand all lines: .github/CODEOWNERS
+28-13Lines changed: 28 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
@@ -38,7 +41,6 @@ Python/compile.c @markshannon @iritkatriel
3841
Python/assemble.c @markshannon @iritkatriel
3942
Python/flowgraph.c @markshannon @iritkatriel
4043
Python/instruction_sequence.c @iritkatriel
41-
Python/ast_opt.c @isidentical
4244
Python/bytecodes.c @markshannon
4345
Python/optimizer*.c @markshannon
4446
Python/optimizer_analysis.c @Fidget-Spinner
@@ -79,6 +81,17 @@ Programs/_bootstrap_python.c @ericsnowcurrently
7981
Programs/python.c @ericsnowcurrently
8082
Tools/build/generate_global_objects.py @ericsnowcurrently
8183

84+
# Initialization
85+
Doc/library/sys_path_init.rst @FFY00
86+
Doc/c-api/init_config.rst @FFY00
87+
88+
# getpath
89+
**/*getpath* @FFY00
90+
91+
# site
92+
**/*site.py @FFY00
93+
Doc/library/site.rst @FFY00
94+
8295
# Exceptions
8396
Lib/test/test_except*.py @iritkatriel
8497
Objects/exceptions.c @iritkatriel
@@ -89,14 +102,13 @@ Objects/exceptions.c @iritkatriel
89102
**/sha* @gpshead @tiran
90103
Modules/md5* @gpshead @tiran
91104
**/*blake* @gpshead @tiran
92-
Modules/_blake2/** @gpshead @tiran
93105
Modules/_hacl/** @gpshead
94106

95107
# logging
96108
**/*logging* @vsajip
97109

98110
# venv
99-
**/*venv* @vsajip
111+
**/*venv* @vsajip @FFY00
100112

101113
# Launcher
102114
/PC/launcher.c @vsajip
@@ -158,10 +170,12 @@ Include/internal/pycore_time.h @pganssle @abalkin
158170
/Tools/cases_generator/ @markshannon
159171

160172
# AST
161-
Python/ast.c @isidentical @JelleZijlstra
162-
Parser/asdl.py @isidentical @JelleZijlstra
163-
Parser/asdl_c.py @isidentical @JelleZijlstra
164-
Lib/ast.py @isidentical @JelleZijlstra
173+
Python/ast.c @isidentical @JelleZijlstra @eclips4
174+
Python/ast_opt.c @isidentical @eclips4
175+
Parser/asdl.py @isidentical @JelleZijlstra @eclips4
176+
Parser/asdl_c.py @isidentical @JelleZijlstra @eclips4
177+
Lib/ast.py @isidentical @JelleZijlstra @eclips4
178+
Lib/test/test_ast/ @eclips4
165179

166180
# Mock
167181
/Lib/unittest/mock.py @cjw296
@@ -206,7 +220,6 @@ Doc/c-api/stable.rst @encukou
206220
**/*bisect* @rhettinger
207221
**/*heapq* @rhettinger
208222
**/*functools* @rhettinger
209-
**/*decimal* @rhettinger
210223

211224
**/*dataclasses* @ericvsmith
212225

@@ -255,8 +268,8 @@ Modules/_interp*module.c @ericsnowcurrently
255268
Lib/test/test_interpreters/ @ericsnowcurrently
256269

257270
# Android
258-
**/*Android* @mhsmith
259-
**/*android* @mhsmith
271+
**/*Android* @mhsmith @freakboy3742
272+
**/*android* @mhsmith @freakboy3742
260273

261274
# iOS (but not termios)
262275
**/iOS* @freakboy3742
@@ -267,7 +280,7 @@ Lib/test/test_interpreters/ @ericsnowcurrently
267280
**/*-ios* @freakboy3742
268281

269282
# WebAssembly
270-
/Tools/wasm/ @brettcannon
283+
/Tools/wasm/ @brettcannon @freakboy3742
271284

272285
# SBOM
273286
/Misc/externals.spdx.json @sethmlarson
@@ -280,3 +293,5 @@ Lib/test/test_configparser.py @jaraco
280293

281294
# Doc sections
282295
Doc/reference/ @willingc
296+
297+
**/*weakref* @kumaraditya303

‎.github/ISSUE_TEMPLATE/bug.yml

Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug.yml
+1-1Lines 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

Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/crash.yml
+2-1Lines 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

‎.github/actionlint.yaml

Copy file name to clipboard
+10Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
self-hosted-runner:
2+
labels: ["ubuntu-24.04-aarch64", "windows-aarch64"]
3+
4+
config-variables: null
5+
6+
paths:
7+
.github/workflows/**/*.yml:
8+
ignore:
9+
- 1st argument of function call is not assignable
10+
- SC2(015|038|086|091|097|098|129|155)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.