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
1515configure *                     @ erlend-aasland  @ corona10 
1616Makefile.pre.in                @ erlend-aasland 
1717Modules /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 
2730Objects /set *                   @ rhettinger 
2831Objects /dict *                  @ methane  @ markshannon 
2932Objects /typevarobject.c        @ JelleZijlstra 
@@ -33,11 +36,11 @@ Objects/frameobject.c         @markshannon
3336Objects /call.c                 @ markshannon 
3437Python /ceval * .c                @ markshannon 
3538Python /ceval * .h                @ markshannon 
39+ Python /codegen.c               @ markshannon  @ iritkatriel 
3640Python /compile.c               @ markshannon  @ iritkatriel 
3741Python /assemble.c              @ markshannon  @ iritkatriel 
3842Python /flowgraph.c             @ markshannon  @ iritkatriel 
3943Python /instruction_sequence.c  @ iritkatriel 
40- Python /ast_opt.c               @ isidentical 
4144Python /bytecodes.c             @ markshannon 
4245Python /optimizer * .c            @ markshannon 
4346Python /optimizer_analysis.c    @ Fidget-Spinner 
@@ -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,35 @@ Programs/_bootstrap_python.c  @ericsnowcurrently
7889Programs /python.c              @ ericsnowcurrently 
7990Tools /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
82104Lib /test /test_except * .py       @ iritkatriel 
83105Objects /exceptions.c           @ iritkatriel 
84106
85- #  Hashing
86- ** /* hashlib *                   @ gpshead  @ tiran 
107+ #  Hashing & cryptographic primitives 
108+ ** /* hashlib *                   @ gpshead  @ tiran   @ picnixz 
87109** /* pyhash *                    @ gpshead  @ tiran 
88- ** /sha *                        @ gpshead  @ tiran 
89- Modules /md5 *                   @ gpshead  @ tiran 
90- ** /* blake *                     @ gpshead  @ tiran 
91- Modules /_blake2 /**             @ gpshead  @ tiran 
110+ ** /sha *                        @ gpshead  @ tiran  @ picnixz 
111+ Modules /md5 *                   @ gpshead  @ tiran  @ picnixz 
112+ ** /* blake *                     @ gpshead  @ tiran  @ picnixz 
92113Modules /_hacl /**               @ gpshead 
114+ ** /* hmac *                      @ gpshead  @ picnixz 
93115
94116#  logging
95117** /* logging *                   @ vsajip 
96118
97119#  venv
98- ** /* venv *                      @ vsajip 
120+ ** /* venv *                      @ vsajip   @ FFY00 
99121
100122#  Launcher
101123/PC /launcher.c                 @ vsajip 
@@ -157,10 +179,12 @@ Include/internal/pycore_time.h  @pganssle @abalkin
157179/Tools /cases_generator /        @ markshannon 
158180
159181#  AST
160- Python /ast.c                   @ isidentical  @ JelleZijlstra 
161- Parser /asdl.py                 @ isidentical  @ JelleZijlstra 
162- Parser /asdl_c.py               @ isidentical  @ JelleZijlstra 
163- Lib /ast.py                     @ isidentical  @ JelleZijlstra 
182+ Python /ast.c                   @ isidentical  @ JelleZijlstra  @ eclips4 
183+ Python /ast_opt.c               @ isidentical  @ eclips4 
184+ Parser /asdl.py                 @ isidentical  @ JelleZijlstra  @ eclips4 
185+ Parser /asdl_c.py               @ isidentical  @ JelleZijlstra  @ eclips4 
186+ Lib /ast.py                     @ isidentical  @ JelleZijlstra  @ eclips4 
187+ Lib /test /test_ast /            @ eclips4 
164188
165189#  Mock
166190/Lib /unittest /mock.py          @ cjw296 
@@ -205,14 +229,14 @@ Doc/c-api/stable.rst          @encukou
205229** /* bisect *                    @ rhettinger 
206230** /* heapq *                     @ rhettinger 
207231** /* functools *                 @ rhettinger 
208- ** /* decimal *                   @ rhettinger 
209232
210233** /* dataclasses *               @ ericvsmith 
211234
212235** /* ensurepip *                 @ pfmoore  @ pradyunsg 
213236
214- ** /* idlelib *                   @ terryjreedy 
215237/Doc /library /idle.rst          @ terryjreedy 
238+ ** /* idlelib *                   @ terryjreedy 
239+ ** /* turtledemo *                @ terryjreedy 
216240
217241** /* annotationlib *             @ JelleZijlstra 
218242** /* typing *                    @ JelleZijlstra  @ AlexWaygood 
@@ -253,8 +277,8 @@ Modules/_interp*module.c      @ericsnowcurrently
253277Lib /test /test_interpreters /   @ ericsnowcurrently 
254278
255279#  Android
256- ** /* Android *                   @ mhsmith 
257- ** /* android *                   @ mhsmith 
280+ ** /* Android *                   @ mhsmith   @ freakboy3742 
281+ ** /* android *                   @ mhsmith   @ freakboy3742 
258282
259283#  iOS (but not termios)
260284** /iOS *                        @ freakboy3742 
@@ -265,7 +289,7 @@ Lib/test/test_interpreters/   @ericsnowcurrently
265289** /* -ios *                      @ freakboy3742 
266290
267291#  WebAssembly
268- /Tools /wasm /                  @ brettcannon 
292+ /Tools /wasm /                  @ brettcannon   @ freakboy3742 
269293
270294#  SBOM
271295/Misc /externals.spdx.json      @ sethmlarson 
@@ -275,3 +299,12 @@ Lib/test/test_interpreters/   @ericsnowcurrently
275299#  Config Parser
276300Lib /configparser.py            @ jaraco 
277301Lib /test /test_configparser.py  @ jaraco 
302+ 
303+ #  Doc sections
304+ Doc /reference /                @ willingc  @ AA-Turner 
305+ 
306+ ** /* weakref *                   @ kumaraditya303 
307+ 
308+ #  Colorize
309+ Lib /_colorize.py               @ hugovk 
310+ Lib /test /test__colorize.py     @ hugovk 
0 commit comments