44# It uses the same pattern rule for gitignore file
55# https://git-scm.com/docs/gitignore#_pattern_format
66
7- # GitHub
8- .github /** @ ezio-melotti @ hugovk
7+ # Azure Pipelines
8+ .azure-pipelines / @ AA-Turner
9+
10+ # GitHub & related scripts
11+ .github /** @ ezio-melotti @ hugovk @ AA-Turner
12+ Tools /build /compute-changes.py @ AA-Turner
13+ Tools /build /verify_ensurepip_wheels.py @ AA-Turner
914
1015# pre-commit
11- .pre-commit-config.yaml @ hugovk @ AlexWaygood
12- .ruff.toml @ hugovk @ AlexWaygood
16+ .pre-commit-config.yaml @ hugovk
17+ .ruff.toml @ hugovk @ AlexWaygood @ AA-Turner
1318
14- # Build system
15- configure * @ erlend-aasland @ corona10
16- Makefile.pre.in @ erlend-aasland
17- Modules /Setup * @ erlend-aasland
19+ # Build system (autotools)
20+ configure * @ erlend-aasland @ corona10 @ AA-Turner
21+ Makefile.pre.in @ erlend-aasland @ AA-Turner
22+ Modules /Setup * @ erlend-aasland @ AA-Turner
23+ Tools /build /regen-configure.sh @ AA-Turner
1824
1925# argparse
2026** /* argparse * @ savannahostrowski
@@ -26,14 +32,17 @@ Modules/Setup* @erlend-aasland
2632** /* context * @ 1st1
2733** /* genobject * @ markshannon
2834** /* hamt * @ 1st1
29- ** /* jit * @ brandtbucher @ savannahostrowski
35+ ** /* jit * @ brandtbucher @ savannahostrowski @ diegorusso
36+ Python /perf_jit_trampoline.c # Exclude the owners of "**/*jit*", above.
3037Objects /set * @ rhettinger
3138Objects /dict * @ methane @ markshannon
3239Objects /typevarobject.c @ JelleZijlstra
40+ Objects /unionobject.c @ JelleZijlstra
3341Objects /type * @ markshannon
3442Objects /codeobject.c @ markshannon
3543Objects /frameobject.c @ markshannon
3644Objects /call.c @ markshannon
45+ Objects /object.c @ ZeroIntensity
3746Python /ceval * .c @ markshannon
3847Python /ceval * .h @ markshannon
3948Python /codegen.c @ markshannon @ iritkatriel
@@ -43,8 +52,9 @@ Python/flowgraph.c @markshannon @iritkatriel
4352Python /instruction_sequence.c @ iritkatriel
4453Python /bytecodes.c @ markshannon
4554Python /optimizer * .c @ markshannon
46- Python /optimizer_analysis.c @ Fidget-Spinner
47- Python /optimizer_bytecodes.c @ Fidget-Spinner
55+ Python /optimizer_analysis.c @ Fidget-Spinner @ tomasr8
56+ Python /optimizer_bytecodes.c @ Fidget-Spinner @ tomasr8
57+ Python /optimizer_symbols.c @ tomasr8
4858Python /symtable.c @ JelleZijlstra @ carljm
4959Lib /_pyrepl /* @ pablogsal @ lysnikolaou @ ambv
5060Lib /test /test_patma.py @ brandtbucher
@@ -56,9 +66,18 @@ Tools/c-analyzer/ @ericsnowcurrently
5666# dbm
5767** /* dbm * @ corona10 @ erlend-aasland @ serhiy-storchaka
5868
69+ # Doc/ tools
70+ Doc /conf.py @ AA-Turner @ hugovk
71+ Doc /Makefile @ AA-Turner @ hugovk
72+ Doc /make.bat @ AA-Turner @ hugovk
73+ Doc /requirements.txt @ AA-Turner @ hugovk
74+ Doc /_static /** @ AA-Turner @ hugovk
75+ Doc /tools /** @ AA-Turner @ hugovk
76+ .readthedocs.yml @ AA-Turner
77+
5978# runtime state/lifecycle
60- ** /* pylifecycle * @ ericsnowcurrently
61- ** /* pystate * @ ericsnowcurrently
79+ ** /* pylifecycle * @ ericsnowcurrently @ ZeroIntensity
80+ ** /* pystate * @ ericsnowcurrently @ ZeroIntensity
6281** /* preconfig * @ ericsnowcurrently
6382** /* initconfig * @ ericsnowcurrently
6483** /* pathconfig * @ ericsnowcurrently
@@ -96,13 +115,18 @@ Doc/library/site.rst @FFY00
96115Lib /test /test_except * .py @ iritkatriel
97116Objects /exceptions.c @ iritkatriel
98117
99- # Hashing
100- ** /* hashlib * @ gpshead @ tiran
101- ** /* pyhash * @ gpshead @ tiran
102- ** /sha * @ gpshead @ tiran
103- Modules /md5 * @ gpshead @ tiran
104- ** /* blake * @ gpshead @ tiran
105- Modules /_hacl /** @ gpshead
118+ # Hashing & cryptographic primitives
119+ ** /* hashlib * @ gpshead @ tiran @ picnixz
120+ ** /* hashopenssl * @ gpshead @ tiran @ picnixz
121+ ** /* pyhash * @ gpshead @ tiran @ picnixz
122+ Modules /* blake * @ gpshead @ tiran @ picnixz
123+ Modules /* md5 * @ gpshead @ tiran @ picnixz
124+ Modules /* sha * @ gpshead @ tiran @ picnixz
125+ Modules /_hacl /** @ gpshead @ picnixz
126+ ** /* hmac * @ gpshead @ picnixz
127+
128+ # libssl
129+ ** /* ssl * @ gpshead @ picnixz
106130
107131# logging
108132** /* logging * @ vsajip
@@ -138,6 +162,10 @@ Doc/c-api/module.rst @ericsnowcurrently
138162** /* importlib /resources /* @ jaraco @ warsaw @ FFY00
139163** /* importlib /metadata /* @ jaraco @ warsaw
140164
165+ # Calendar
166+ Lib /calendar.py @ AA-Turner
167+ Lib /test /test_calendar.py @ AA-Turner
168+
141169# Dates and times
142170** /* datetime * @ pganssle @ abalkin
143171** /* str * time * @ pganssle @ abalkin
@@ -154,6 +182,9 @@ Include/internal/pycore_time.h @pganssle @abalkin
154182** /* imap * @ python/email-team
155183** /* poplib * @ python/email-team
156184
185+ # Exclude .mailmap from being owned by @python/email-team
186+ /.mailmap
187+
157188# Garbage collector
158189/Modules /gcmodule.c @ pablogsal
159190/Doc /library /gc.rst @ pablogsal
@@ -170,12 +201,13 @@ Include/internal/pycore_time.h @pganssle @abalkin
170201/Tools /cases_generator / @ markshannon
171202
172203# AST
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
204+ Python /ast.c @ isidentical @ JelleZijlstra @ eclips4 @ tomasr8
205+ Python /ast_preprocess.c @ isidentical @ eclips4 @ tomasr8
206+ Parser /asdl.py @ isidentical @ JelleZijlstra @ eclips4 @ tomasr8
207+ Parser /asdl_c.py @ isidentical @ JelleZijlstra @ eclips4 @ tomasr8
208+ Lib /ast.py @ isidentical @ JelleZijlstra @ eclips4 @ tomasr8
209+ Lib /_ast_unparse.py @ isidentical @ JelleZijlstra @ eclips4 @ tomasr8
210+ Lib /test /test_ast / @ eclips4 @ tomasr8
179211
180212# Mock
181213/Lib /unittest /mock.py @ cjw296
@@ -184,6 +216,11 @@ Lib/test/test_ast/ @eclips4
184216# multiprocessing
185217** /* multiprocessing * @ gpshead
186218
219+ # pydoc
220+ Lib /pydoc.py @ AA-Turner
221+ Lib /pydoc_data / @ AA-Turner
222+ Lib /test /test_pydoc / @ AA-Turner
223+
187224# SQLite 3
188225** /* sqlite * @ berkerpeksag @ erlend-aasland
189226
@@ -196,6 +233,11 @@ Lib/test/test_ast/ @eclips4
196233** /* pdb * @ gaogaotiantian
197234** /* bdb * @ gaogaotiantian
198235
236+ # types
237+ Lib /test /test_types.py @ AA-Turner
238+ Lib /types.py @ AA-Turner
239+ Modules /_typesmodule.c @ AA-Turner
240+
199241# Limited C API & stable ABI
200242Tools /build /stable_abi.py @ encukou
201243Misc /stable_abi.toml @ encukou
@@ -213,6 +255,11 @@ Doc/c-api/stable.rst @encukou
213255/Tools /msi / @ python/windows-team
214256/Tools /nuget / @ python/windows-team
215257
258+ # Zstandard
259+ Lib /compression /zstd / @ AA-Turner
260+ Lib /test /test_zstd.py @ AA-Turner
261+ Modules /_zstd / @ AA-Turner
262+
216263# Misc
217264** /* itertools * @ rhettinger
218265** /* collections * @ rhettinger
@@ -245,6 +292,9 @@ Doc/c-api/stable.rst @encukou
245292
246293** /* cjkcodecs * @ corona10
247294
295+ # Patchcheck
296+ Tools /patchcheck / @ AA-Turner
297+
248298# macOS
249299/Mac / @ python/macos-team
250300** /* osx_support * @ python/macos-team
@@ -256,16 +306,20 @@ Doc/c-api/stable.rst @encukou
256306** /* zipfile /_path /* @ jaraco
257307
258308# Argument Clinic
259- /Tools /clinic /** @ erlend-aasland
260- /Lib /test /test_clinic.py @ erlend-aasland
261- Doc /howto /clinic.rst @ erlend-aasland
309+ /Tools /clinic /** @ erlend-aasland @ AA-Turner
310+ /Lib /test /test_clinic.py @ erlend-aasland @ AA-Turner
311+ Doc /howto /clinic.rst @ erlend-aasland @ AA-Turner
262312
263313# Subinterpreters
264314** /* interpreteridobject. * @ ericsnowcurrently
265315** /* crossinterp * @ ericsnowcurrently
266- Lib /test /support /interpreters / @ ericsnowcurrently
267316Modules /_interp * module.c @ ericsnowcurrently
317+ Lib /test /test__interp * .py @ ericsnowcurrently
318+ Lib /concurrent /interpreters / @ ericsnowcurrently
319+ Lib /test /support /channels.py @ ericsnowcurrently
320+ Doc /library /concurrent.interpreters.rst @ ericsnowcurrently
268321Lib /test /test_interpreters / @ ericsnowcurrently
322+ Lib /concurrent /futures /interpreter.py @ ericsnowcurrently
269323
270324# Android
271325** /* Android * @ mhsmith @ freakboy3742
@@ -280,7 +334,12 @@ Lib/test/test_interpreters/ @ericsnowcurrently
280334** /* -ios * @ freakboy3742
281335
282336# WebAssembly
283- /Tools /wasm / @ brettcannon @ freakboy3742
337+ Tools /wasm /config.site-wasm32-emscripten @ freakboy3742
338+ /Tools /wasm /README.md @ brettcannon @ freakboy3742
339+ /Tools /wasm /wasi-env @ brettcannon
340+ /Tools /wasm /wasi.py @ brettcannon
341+ /Tools /wasm /emscripten @ freakboy3742
342+ /Tools /wasm /wasi @ brettcannon
284343
285344# SBOM
286345/Misc /externals.spdx.json @ sethmlarson
@@ -292,6 +351,31 @@ Lib/configparser.py @jaraco
292351Lib /test /test_configparser.py @ jaraco
293352
294353# Doc sections
295- Doc /reference / @ willingc
354+ Doc /reference / @ willingc @ AA-Turner
355+ Doc /whatsnew / @ AA-Turner
296356
297357** /* weakref * @ kumaraditya303
358+
359+ # Colorize
360+ Lib /_colorize.py @ hugovk
361+ Lib /test /test__colorize.py @ hugovk
362+
363+ # Fuzzing
364+ Modules /_xxtestfuzz / @ ammaraskar
365+
366+ # t-strings
367+ ** /* interpolationobject * @ lysnikolaou
368+ ** /* templateobject * @ lysnikolaou
369+ ** /* templatelib * @ lysnikolaou @ AA-Turner
370+ ** /* tstring * @ lysnikolaou
371+
372+ # Remote debugging
373+ Python /remote_debug.h @ pablogsal
374+ Python /remote_debugging.c @ pablogsal
375+ Modules /_remote_debugging_module.c @ pablogsal @ ambv @ 1st1
376+
377+ # gettext
378+ ** /* gettext * @ tomasr8
379+
380+ # Internal Docs
381+ InternalDocs / @ AA-Turner
0 commit comments