6363.azure-pipelines / @ AA-Turner
6464
6565# GitHub & related scripts
66- .github / @ ezio-melotti @ hugovk @ AA-Turner
67- Tools /build /compute-changes.py @ AA-Turner
68- Tools /build /verify_ensurepip_wheels.py @ AA-Turner @ pfmoore @ pradyunsg
66+ .github / @ ezio-melotti @ hugovk @ AA-Turner @ webknjaz
67+ Tools /build /compute-changes.py @ AA-Turner @ hugovk @ webknjaz
68+ Lib /test /test_tools /test_compute_changes.py @ AA-Turner @ hugovk @ webknjaz
69+ Tools /build /verify_ensurepip_wheels.py @ AA-Turner @ pfmoore @ pradyunsg
6970
7071# Pre-commit
7172.pre-commit-config.yaml @ hugovk
@@ -110,6 +111,7 @@ Doc/tools/ @AA-Turner @hugovk
110111.readthedocs.yml @ AA-Turner
111112
112113# Sections
114+ Doc /c-api / @ ZeroIntensity
113115Doc /reference / @ willingc @ AA-Turner
114116Doc /whatsnew / @ AA-Turner
115117
@@ -126,6 +128,9 @@ Doc/howto/clinic.rst @erlend-aasland @AA-Turner
126128# C Analyser
127129Tools /c-analyzer / @ ericsnowcurrently
128130
131+ # C API Documentation Checks
132+ Tools /check-c-api-docs / @ ZeroIntensity
133+
129134# Fuzzing
130135Modules /_xxtestfuzz / @ ammaraskar
131136
@@ -140,6 +145,9 @@ Misc/externals.spdx.json @sethmlarson
140145Misc /sbom.spdx.json @ sethmlarson
141146Tools /build /generate_sbom.py @ sethmlarson
142147
148+ # ABI check
149+ Misc /libabigail.abignore @ encukou
150+
143151
144152# ----------------------------------------------------------------------------
145153# Platform Support
@@ -170,9 +178,10 @@ Tools/wasm/config.site-wasm32-emscripten @freakboy3742 @emmatyping
170178Tools /wasm /emscripten @ freakboy3742 @ emmatyping
171179
172180# WebAssembly (WASI)
173- Tools /wasm /wasi-env @ brettcannon @ emmatyping
174- Tools /wasm /wasi.py @ brettcannon @ emmatyping
175- Tools /wasm /wasi @ brettcannon @ emmatyping
181+ Platforms /WASI @ brettcannon @ emmatyping @ savannahostrowski
182+ Tools /wasm /wasi-env @ brettcannon @ emmatyping @ savannahostrowski
183+ Tools /wasm /wasi.py @ brettcannon @ emmatyping @ savannahostrowski
184+ Tools /wasm /wasi @ brettcannon @ emmatyping @ savannahostrowski
176185
177186# Windows
178187PC / @ python/windows-team
@@ -251,45 +260,51 @@ Include/pyhash.h @gpshead @picnixz
251260Python /pyhash.c @ gpshead @ picnixz
252261
253262# The import system (including importlib)
254- ** /* import * @ brettcannon @ ericsnowcurrently @ ncoghlan @ warsaw
255- Python /import.c @ brettcannon @ ericsnowcurrently @ ncoghlan @ warsaw @ kumaraditya303
263+ ** /* import * @ brettcannon @ ericsnowcurrently @ ncoghlan @ warsaw @ FFY00
264+ Python /import.c @ brettcannon @ ericsnowcurrently @ ncoghlan @ warsaw @ FFY00 @ kumaraditya303
256265** /* freeze * @ ericsnowcurrently
257266** /* frozen * @ ericsnowcurrently
258267** /* modsupport * @ ericsnowcurrently
259- ** /* modulefinder * @ ericsnowcurrently
268+ ** /* modulefinder * @ ericsnowcurrently @ FFY00
260269** /* moduleobject * @ ericsnowcurrently
261270** /* multiphase * @ ericsnowcurrently
262- ** /* pkgutil * @ ericsnowcurrently
271+ ** /* pkgutil * @ ericsnowcurrently @ FFY00
263272** /* pythonrun * @ ericsnowcurrently
264- ** /* runpy * @ ericsnowcurrently
273+ ** /* runpy * @ ericsnowcurrently @ FFY00
265274** /* singlephase * @ ericsnowcurrently
266275Doc /c-api /module.rst @ ericsnowcurrently
267276Lib /test /test_module / @ ericsnowcurrently
268- Python /dynload_ * .c @ ericsnowcurrently
277+ Python /dynload_ * .c @ ericsnowcurrently @ FFY00
269278
270279# Initialisation
271- ** /* initconfig * @ ericsnowcurrently
272- ** /* pathconfig * @ ericsnowcurrently
273- ** /* preconfig * @ ericsnowcurrently
280+ ** /* initconfig * @ ericsnowcurrently @ FFY00
281+ ** /* pathconfig * @ ericsnowcurrently @ FFY00
282+ ** /* preconfig * @ ericsnowcurrently @ FFY00
274283Doc /library /sys_path_init.rst @ FFY00
275284Doc /c-api /init_config.rst @ FFY00
276285
277286# Interpreter main program
278- Modules /main.c @ ericsnowcurrently
279- Programs /_bootstrap_python.c @ ericsnowcurrently
280- Programs /python.c @ ericsnowcurrently
287+ Modules /main.c @ ericsnowcurrently @ FFY00
288+ Programs /_bootstrap_python.c @ ericsnowcurrently @ FFY00
289+ Programs /python.c @ ericsnowcurrently @ FFY00
281290
282291# JIT
292+ .github /workflows /jit.yml @ savannahostrowski
283293Include /internal /pycore_jit.h @ brandtbucher @ savannahostrowski @ diegorusso
284294Python /jit.c @ brandtbucher @ savannahostrowski @ diegorusso
285295Tools /jit / @ brandtbucher @ savannahostrowski @ diegorusso
286296InternalDocs /jit.md @ brandtbucher @ savannahostrowski @ diegorusso @ AA-Turner
287297
298+ # Lazy imports (PEP 810)
299+ Objects /lazyimportobject.c @ yhg1s @ DinoV @ pablogsal
300+ Include /internal /pycore_lazyimportobject.h @ yhg1s @ DinoV @ pablogsal
301+ Lib /test /test_lazy_import @ yhg1s @ DinoV @ pablogsal
302+
288303# Micro-op / μop / Tier 2 Optimiser
289- Python /optimizer.c @ markshannon
290- Python /optimizer_analysis.c @ markshannon @ tomasr8 @ Fidget-Spinner
291- Python /optimizer_bytecodes.c @ markshannon @ tomasr8 @ Fidget-Spinner
292- Python /optimizer_symbols.c @ markshannon @ tomasr8
304+ Python /optimizer.c @ markshannon @ Fidget-Spinner
305+ Python /optimizer_analysis.c @ markshannon @ tomasr8 @ Fidget-Spinner @ savannahostrowski
306+ Python /optimizer_bytecodes.c @ markshannon @ tomasr8 @ Fidget-Spinner @ savannahostrowski
307+ Python /optimizer_symbols.c @ markshannon @ tomasr8 @ Fidget-Spinner @ savannahostrowski
293308
294309# Parser, Lexer, and Grammar
295310Grammar /python.gram @ pablogsal @ lysnikolaou
@@ -301,8 +316,8 @@ Tools/peg_generator/ @pablogsal @lysnikolaou
301316
302317# Runtime state/lifecycle
303318** /* gil * @ ericsnowcurrently
304- ** /* pylifecycle * @ ericsnowcurrently @ ZeroIntensity
305- ** /* pystate * @ ericsnowcurrently @ ZeroIntensity
319+ ** /* pylifecycle * @ ericsnowcurrently @ ZeroIntensity @ FFY00
320+ ** /* pystate * @ ericsnowcurrently @ ZeroIntensity @ FFY00
306321Include /internal /pycore_ * _init.h @ ericsnowcurrently
307322Include /internal /pycore_ * _state.h @ ericsnowcurrently
308323Include /internal /pycore_atexit.h @ ericsnowcurrently
@@ -319,7 +334,7 @@ Tools/build/generate_global_objects.py @ericsnowcurrently
319334# Remote Debugging
320335Python /remote_debug.h @ pablogsal
321336Python /remote_debugging.c @ pablogsal
322- Modules /_remote_debugging_module.c @ pablogsal @ ambv @ 1st1
337+ Modules /_remote_debugging / @ pablogsal
323338
324339# Sub-Interpreters
325340** /* crossinterp * @ ericsnowcurrently
@@ -410,18 +425,19 @@ Lib/dataclasses.py @ericvsmith
410425Lib /test /test_dataclasses / @ ericvsmith
411426
412427# Dates and times
413- Doc /** /* time.rst @ pganssle @ abalkin
414- Doc /library /zoneinfo.rst @ pganssle
415- Include /datetime.h @ pganssle @ abalkin
416- Include /internal /pycore_time.h @ pganssle @ abalkin
417- Lib /test /test_zoneinfo / @ pganssle
418- Lib /zoneinfo / @ pganssle
419- Lib /* time.py @ pganssle @ abalkin
420- Lib /test /datetimetester.py @ pganssle @ abalkin
421- Lib /test /test_ * time.py @ pganssle @ abalkin
422- Modules /* zoneinfo * @ pganssle
423- Modules /* time * @ pganssle @ abalkin
424- Python /pytime.c @ pganssle @ abalkin
428+ Doc /** /* time.rst @ pganssle @ abalkin @ StanFromIreland
429+ Doc /library /datetime- * @ pganssle @ StanFromIreland
430+ Doc /library /zoneinfo.rst @ pganssle @ StanFromIreland
431+ Include /datetime.h @ pganssle @ abalkin @ StanFromIreland
432+ Include /internal /pycore_time.h @ pganssle @ abalkin @ StanFromIreland
433+ Lib /test /test_zoneinfo / @ pganssle @ StanFromIreland
434+ Lib /zoneinfo / @ pganssle @ StanFromIreland
435+ Lib /* time.py @ pganssle @ abalkin @ StanFromIreland
436+ Lib /test /datetimetester.py @ pganssle @ abalkin @ StanFromIreland
437+ Lib /test /test_ * time.py @ pganssle @ abalkin @ StanFromIreland
438+ Modules /* zoneinfo * @ pganssle @ StanFromIreland
439+ Modules /* time * @ pganssle @ abalkin @ StanFromIreland
440+ Python /pytime.c @ pganssle @ abalkin @ StanFromIreland
425441
426442# Dbm
427443Doc /library /dbm.rst @ corona10 @ erlend-aasland @ serhiy-storchaka
@@ -460,8 +476,9 @@ Lib/test/test_functools.py @rhettinger
460476Modules /_functoolsmodule.c @ rhettinger
461477
462478# Garbage collector
463- Modules /gcmodule.c @ pablogsal
464- Doc /library /gc.rst @ pablogsal
479+ Modules /gcmodule.c @ pablogsal
480+ Doc /library /gc.rst @ pablogsal
481+ InternalDocs /garbage_collector.md @ pablogsal
465482
466483# Gettext
467484Doc /library /gettext.rst @ tomasr8
@@ -488,13 +505,13 @@ Lib/idlelib/ @terryjreedy
488505Lib /turtledemo / @ terryjreedy
489506
490507# importlib.metadata
491- Doc /library /importlib.metadata.rst @ jaraco @ warsaw
492- Lib /importlib /metadata / @ jaraco @ warsaw
493- Lib /test /test_importlib /metadata / @ jaraco @ warsaw
508+ Doc /library /importlib.metadata.rst @ jaraco @ warsaw @ FFY00
509+ Lib /importlib /metadata / @ jaraco @ warsaw @ FFY00
510+ Lib /test /test_importlib /metadata / @ jaraco @ warsaw @ FFY00
494511
495512# importlib.resources
496- Doc /library /importlib.resources.abc.rst @ jaraco @ warsaw
497- Doc /library /importlib.resources.rst @ jaraco @ warsaw
513+ Doc /library /importlib.resources.abc.rst @ jaraco @ warsaw @ FFY00
514+ Doc /library /importlib.resources.rst @ jaraco @ warsaw @ FFY00
498515Lib /importlib /resources / @ jaraco @ warsaw @ FFY00
499516Lib /test /test_importlib /resources / @ jaraco @ warsaw @ FFY00
500517
@@ -534,6 +551,11 @@ Lib/pydoc.py @AA-Turner
534551Lib /pydoc_data / @ AA-Turner
535552Lib /test /test_pydoc / @ AA-Turner
536553
554+ # Profiling (Sampling)
555+ Doc /library /profiling * .rst @ pablogsal
556+ Lib /profiling / @ pablogsal
557+ Lib /test /test_profiling / @ pablogsal
558+
537559# PyREPL
538560Lib /_pyrepl / @ pablogsal @ lysnikolaou @ ambv
539561Lib /test /test_pyrepl / @ pablogsal @ lysnikolaou @ ambv
0 commit comments