Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 42 additions & 9 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,23 @@
# It uses the same pattern rule for gitignore file
# https://git-scm.com/docs/gitignore#_pattern_format

# GitHub
# Azure Pipelines
.azure-pipelines/ @AA-Turner

# GitHub & related scripts
.github/** @ezio-melotti @hugovk @AA-Turner
Tools/build/compute-changes.py @AA-Turner
Tools/build/verify_ensurepip_wheels.py @AA-Turner

# pre-commit
.pre-commit-config.yaml @hugovk
.ruff.toml @hugovk @AlexWaygood @AA-Turner

# Build system
configure* @erlend-aasland @corona10
Makefile.pre.in @erlend-aasland
Modules/Setup* @erlend-aasland
# Build system (autotools)
configure* @erlend-aasland @corona10 @AA-Turner
Makefile.pre.in @erlend-aasland @AA-Turner
Modules/Setup* @erlend-aasland @AA-Turner
Tools/build/regen-configure.sh @AA-Turner

# argparse
**/*argparse* @savannahostrowski
Expand Down Expand Up @@ -67,6 +73,7 @@ Doc/make.bat @AA-Turner @hugovk
Doc/requirements.txt @AA-Turner @hugovk
Doc/_static/** @AA-Turner @hugovk
Doc/tools/** @AA-Turner @hugovk
.readthedocs.yml @AA-Turner

# runtime state/lifecycle
**/*pylifecycle* @ericsnowcurrently @ZeroIntensity
Expand Down Expand Up @@ -155,6 +162,10 @@ Doc/c-api/module.rst @ericsnowcurrently
**/*importlib/resources/* @jaraco @warsaw @FFY00
**/*importlib/metadata/* @jaraco @warsaw

# Calendar
Lib/calendar.py @AA-Turner
Lib/test/test_calendar.py @AA-Turner

# Dates and times
**/*datetime* @pganssle @abalkin
**/*str*time* @pganssle @abalkin
Expand Down Expand Up @@ -205,6 +216,11 @@ Lib/test/test_ast/ @eclips4 @tomasr8
# multiprocessing
**/*multiprocessing* @gpshead

# pydoc
Lib/pydoc.py @AA-Turner
Lib/pydoc_data/ @AA-Turner
Lib/test/test_pydoc/ @AA-Turner

# SQLite 3
**/*sqlite* @berkerpeksag @erlend-aasland

Expand All @@ -217,6 +233,11 @@ Lib/test/test_ast/ @eclips4 @tomasr8
**/*pdb* @gaogaotiantian
**/*bdb* @gaogaotiantian

# types
Lib/test/test_types.py @AA-Turner
Lib/types.py @AA-Turner
Modules/_typesmodule.c @AA-Turner

# Limited C API & stable ABI
Tools/build/stable_abi.py @encukou
Misc/stable_abi.toml @encukou
Expand All @@ -234,6 +255,11 @@ Doc/c-api/stable.rst @encukou
/Tools/msi/ @python/windows-team
/Tools/nuget/ @python/windows-team

# Zstandard
Lib/compression/zstd/ @AA-Turner
Lib/test/test_zstd.py @AA-Turner
Modules/_zstd/ @AA-Turner

# Misc
**/*itertools* @rhettinger
**/*collections* @rhettinger
Expand Down Expand Up @@ -266,6 +292,9 @@ Doc/c-api/stable.rst @encukou

**/*cjkcodecs* @corona10

# Patchcheck
Tools/patchcheck/ @AA-Turner

# macOS
/Mac/ @python/macos-team
**/*osx_support* @python/macos-team
Expand All @@ -277,9 +306,9 @@ Doc/c-api/stable.rst @encukou
**/*zipfile/_path/* @jaraco

# Argument Clinic
/Tools/clinic/** @erlend-aasland
/Lib/test/test_clinic.py @erlend-aasland
Doc/howto/clinic.rst @erlend-aasland
/Tools/clinic/** @erlend-aasland @AA-Turner
/Lib/test/test_clinic.py @erlend-aasland @AA-Turner
Doc/howto/clinic.rst @erlend-aasland @AA-Turner

# Subinterpreters
**/*interpreteridobject.* @ericsnowcurrently
Expand Down Expand Up @@ -323,6 +352,7 @@ Lib/test/test_configparser.py @jaraco

# Doc sections
Doc/reference/ @willingc @AA-Turner
Doc/whatsnew/ @AA-Turner

**/*weakref* @kumaraditya303

Expand All @@ -336,7 +366,7 @@ Modules/_xxtestfuzz/ @ammaraskar
# t-strings
**/*interpolationobject* @lysnikolaou
**/*templateobject* @lysnikolaou
**/*templatelib* @lysnikolaou
**/*templatelib* @lysnikolaou @AA-Turner
**/*tstring* @lysnikolaou

# Remote debugging
Expand All @@ -346,3 +376,6 @@ Modules/_remote_debugging_module.c @pablogsal @ambv @1st1

# gettext
**/*gettext* @tomasr8

# Internal Docs
InternalDocs/ @AA-Turner
Loading