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 819c0bc

Browse filesBrowse files
authored
Merge branch 'main' into fix-issues-83938-122476
2 parents 99914e3 + 053c285 commit 819c0bc
Copy full SHA for 819c0bc

File tree

1,917 files changed

+155642
-80532
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

1,917 files changed

+155642
-80532
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

‎.github/CODEOWNERS

Copy file name to clipboardExpand all lines: .github/CODEOWNERS
+51-18Lines changed: 51 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,28 @@
55
# https://git-scm.com/docs/gitignore#_pattern_format
66

77
# GitHub
8-
.github/** @ezio-melotti @hugovk
8+
.github/** @ezio-melotti @hugovk @AA-Turner
99

1010
# pre-commit
1111
.pre-commit-config.yaml @hugovk @AlexWaygood
12-
.ruff.toml @hugovk @AlexWaygood
12+
.ruff.toml @hugovk @AlexWaygood @AA-Turner
1313

1414
# Build system
1515
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
@@ -53,6 +56,14 @@ Tools/c-analyzer/ @ericsnowcurrently
5356
# dbm
5457
**/*dbm* @corona10 @erlend-aasland @serhiy-storchaka
5558

59+
# Doc/ tools
60+
Doc/conf.py @AA-Turner @hugovk
61+
Doc/Makefile @AA-Turner @hugovk
62+
Doc/make.bat @AA-Turner @hugovk
63+
Doc/requirements.txt @AA-Turner @hugovk
64+
Doc/_static/** @AA-Turner @hugovk
65+
Doc/tools/** @AA-Turner @hugovk
66+
5667
# runtime state/lifecycle
5768
**/*pylifecycle* @ericsnowcurrently
5869
**/*pystate* @ericsnowcurrently
@@ -78,24 +89,39 @@ Programs/_bootstrap_python.c @ericsnowcurrently
7889
Programs/python.c @ericsnowcurrently
7990
Tools/build/generate_global_objects.py @ericsnowcurrently
8091

92+
# Initialization
93+
Doc/library/sys_path_init.rst @FFY00
94+
Doc/c-api/init_config.rst @FFY00
95+
96+
# getpath
97+
**/*getpath* @FFY00
98+
99+
# site
100+
**/*site.py @FFY00
101+
Doc/library/site.rst @FFY00
102+
81103
# Exceptions
82104
Lib/test/test_except*.py @iritkatriel
83105
Objects/exceptions.c @iritkatriel
84106

85-
# Hashing
86-
**/*hashlib* @gpshead @tiran
87-
**/*pyhash* @gpshead @tiran
88-
**/sha* @gpshead @tiran
89-
Modules/md5* @gpshead @tiran
90-
**/*blake* @gpshead @tiran
91-
Modules/_blake2/** @gpshead @tiran
92-
Modules/_hacl/** @gpshead
107+
# Hashing & cryptographic primitives
108+
**/*hashlib* @gpshead @tiran @picnixz
109+
**/*hashopenssl* @gpshead @tiran @picnixz
110+
**/*pyhash* @gpshead @tiran @picnixz
111+
Modules/*blake* @gpshead @tiran @picnixz
112+
Modules/*md5* @gpshead @tiran @picnixz
113+
Modules/*sha* @gpshead @tiran @picnixz
114+
Modules/_hacl/** @gpshead @picnixz
115+
**/*hmac* @gpshead @picnixz
116+
117+
# libssl
118+
**/*ssl* @gpshead @picnixz
93119

94120
# logging
95121
**/*logging* @vsajip
96122

97123
# venv
98-
**/*venv* @vsajip
124+
**/*venv* @vsajip @FFY00
99125

100126
# Launcher
101127
/PC/launcher.c @vsajip
@@ -255,8 +281,8 @@ Modules/_interp*module.c @ericsnowcurrently
255281
Lib/test/test_interpreters/ @ericsnowcurrently
256282

257283
# Android
258-
**/*Android* @mhsmith
259-
**/*android* @mhsmith
284+
**/*Android* @mhsmith @freakboy3742
285+
**/*android* @mhsmith @freakboy3742
260286

261287
# iOS (but not termios)
262288
**/iOS* @freakboy3742
@@ -267,7 +293,7 @@ Lib/test/test_interpreters/ @ericsnowcurrently
267293
**/*-ios* @freakboy3742
268294

269295
# WebAssembly
270-
/Tools/wasm/ @brettcannon
296+
/Tools/wasm/ @brettcannon @freakboy3742
271297

272298
# SBOM
273299
/Misc/externals.spdx.json @sethmlarson
@@ -279,6 +305,13 @@ Lib/configparser.py @jaraco
279305
Lib/test/test_configparser.py @jaraco
280306

281307
# Doc sections
282-
Doc/reference/ @willingc
308+
Doc/reference/ @willingc @AA-Turner
309+
310+
**/*weakref* @kumaraditya303
311+
312+
# Colorize
313+
Lib/_colorize.py @hugovk
314+
Lib/test/test__colorize.py @hugovk
283315

284-
**/*weakref* @kumaraditya303
316+
# Fuzzing
317+
Modules/_xxtestfuzz/ @ammaraskar

‎.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: ["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)

‎.github/workflows/add-issue-header.yml

Copy file name to clipboardExpand all lines: .github/workflows/add-issue-header.yml
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
permissions:
2020
issues: write
21+
timeout-minutes: 5
2122
steps:
2223
- uses: actions/github-script@v7
2324
with:

0 commit comments

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