2017-08-01 00:56:12 -03:00
|
|
|
# See https://help.github.com/articles/about-codeowners/
|
|
|
|
# for more info about CODEOWNERS file
|
|
|
|
|
|
|
|
# It uses the same pattern rule for gitignore file
|
|
|
|
# https://git-scm.com/docs/gitignore#_pattern_format
|
|
|
|
|
2022-10-08 04:11:38 -03:00
|
|
|
# GitHub
|
|
|
|
.github/** @ezio-melotti
|
|
|
|
|
2017-08-01 19:41:33 -03:00
|
|
|
# asyncio
|
2022-08-24 17:16:41 -03:00
|
|
|
**/*asyncio* @1st1 @asvetlov @gvanrossum
|
2017-08-01 19:41:33 -03:00
|
|
|
|
|
|
|
# Core
|
2018-01-23 02:59:50 -04:00
|
|
|
**/*context* @1st1
|
2022-08-23 16:21:10 -03:00
|
|
|
**/*genobject* @markshannon
|
2018-01-23 02:59:50 -04:00
|
|
|
**/*hamt* @1st1
|
2019-12-04 05:07:02 -04:00
|
|
|
Objects/set* @rhettinger
|
2020-10-23 09:05:48 -03:00
|
|
|
Objects/dict* @methane @markshannon
|
|
|
|
Objects/type* @markshannon
|
|
|
|
Objects/codeobject.c @markshannon
|
|
|
|
Objects/frameobject.c @markshannon
|
|
|
|
Objects/call.c @markshannon
|
|
|
|
Python/ceval.c @markshannon
|
2022-08-16 05:38:32 -03:00
|
|
|
Python/compile.c @markshannon @iritkatriel
|
2020-12-24 07:30:46 -04:00
|
|
|
Python/ast_opt.c @isidentical
|
2022-02-18 14:57:02 -04:00
|
|
|
Lib/test/test_patma.py @brandtbucher
|
|
|
|
Lib/test/test_peepholer.py @brandtbucher
|
2017-08-01 19:41:33 -03:00
|
|
|
|
2022-01-02 19:22:42 -04:00
|
|
|
# Exceptions
|
|
|
|
Lib/traceback.py @iritkatriel
|
|
|
|
Lib/test/test_except*.py @iritkatriel
|
|
|
|
Lib/test/test_traceback.py @iritkatriel
|
|
|
|
Objects/exceptions.c @iritkatriel
|
|
|
|
Python/traceback.c @iritkatriel
|
|
|
|
|
2017-08-01 00:56:12 -03:00
|
|
|
# Hashing
|
2022-03-06 22:04:58 -04:00
|
|
|
**/*hashlib* @tiran
|
|
|
|
**/*pyhash* @tiran
|
|
|
|
**/*sha* @tiran
|
|
|
|
**/*md5* @tiran
|
|
|
|
**/*blake* @tiran
|
|
|
|
/Modules/_blake2/** @tiran
|
|
|
|
/Modules/_sha3/** @tiran
|
2019-05-29 12:45:19 -03:00
|
|
|
|
2019-10-04 05:48:24 -03:00
|
|
|
# logging
|
|
|
|
**/*logging* @vsajip
|
|
|
|
|
|
|
|
# venv
|
|
|
|
**/*venv* @vsajip
|
|
|
|
|
|
|
|
# Launcher
|
|
|
|
/PC/launcher.c @vsajip
|
2017-08-01 00:56:12 -03:00
|
|
|
|
2018-09-15 00:14:16 -03:00
|
|
|
# HTML
|
|
|
|
/Lib/html/ @ezio-melotti
|
|
|
|
/Lib/_markupbase.py @ezio-melotti
|
|
|
|
/Lib/test/test_html*.py @ezio-melotti
|
2022-10-17 07:01:00 -03:00
|
|
|
/Tools/build/parse_html5_entities.py @ezio-melotti
|
2018-09-15 00:14:16 -03:00
|
|
|
|
2018-01-03 15:32:22 -04:00
|
|
|
# Import (including importlib).
|
|
|
|
# Ignoring importlib.h so as to not get flagged on
|
2019-03-07 21:09:40 -04:00
|
|
|
# all pull requests that change the emitted
|
2018-01-03 15:32:22 -04:00
|
|
|
# bytecode.
|
2019-05-06 14:44:49 -03:00
|
|
|
**/*import*.c @brettcannon @encukou @ericsnowcurrently @ncoghlan @warsaw
|
|
|
|
**/*import*.py @brettcannon @encukou @ericsnowcurrently @ncoghlan @warsaw
|
2022-07-24 21:53:10 -03:00
|
|
|
**/*importlib/resources/* @jaraco @warsaw @brettcannon
|
2022-06-18 00:12:07 -03:00
|
|
|
**/importlib/metadata/* @jaraco @warsaw
|
2018-01-03 15:32:22 -04:00
|
|
|
|
2019-06-18 15:57:45 -03:00
|
|
|
# Dates and times
|
|
|
|
**/*datetime* @pganssle @abalkin
|
|
|
|
**/*str*time* @pganssle @abalkin
|
|
|
|
Doc/library/time.rst @pganssle @abalkin
|
|
|
|
Lib/test/test_time.py @pganssle @abalkin
|
|
|
|
Modules/timemodule.c @pganssle @abalkin
|
|
|
|
Python/pytime.c @pganssle @abalkin
|
|
|
|
Include/pytime.h @pganssle @abalkin
|
|
|
|
|
2017-08-02 19:50:50 -03:00
|
|
|
# Email and related
|
2019-05-30 11:59:01 -03:00
|
|
|
**/*mail* @python/email-team
|
2017-09-04 16:19:26 -03:00
|
|
|
**/*smtp* @python/email-team
|
|
|
|
**/*mime* @python/email-team
|
|
|
|
**/*imap* @python/email-team
|
|
|
|
**/*poplib* @python/email-team
|
2017-08-04 23:00:06 -03:00
|
|
|
|
2019-11-18 22:03:55 -04:00
|
|
|
# Garbage collector
|
|
|
|
/Modules/gcmodule.c @pablogsal
|
|
|
|
/Doc/library/gc.rst @pablogsal
|
|
|
|
|
2020-06-18 19:23:40 -03:00
|
|
|
# Parser
|
2020-07-01 06:47:35 -03:00
|
|
|
/Parser/ @pablogsal @lysnikolaou
|
|
|
|
/Tools/peg_generator/ @pablogsal @lysnikolaou
|
|
|
|
/Lib/test/test_peg_generator/ @pablogsal @lysnikolaou
|
2020-10-22 15:26:14 -03:00
|
|
|
/Grammar/python.gram @pablogsal @lysnikolaou
|
2019-04-24 17:25:23 -03:00
|
|
|
|
2020-12-24 07:30:46 -04:00
|
|
|
# AST
|
|
|
|
Python/ast.c @isidentical
|
|
|
|
Parser/asdl.py @isidentical
|
|
|
|
Parser/asdl_c.py @isidentical
|
|
|
|
Lib/ast.py @isidentical
|
|
|
|
|
2021-04-12 06:44:42 -03:00
|
|
|
# Mock
|
|
|
|
/Lib/unittest/mock.py @cjw296
|
2022-06-21 05:27:59 -03:00
|
|
|
/Lib/test/test_unittest/testmock/* @cjw296
|
2021-04-12 06:44:42 -03:00
|
|
|
|
2019-04-16 10:54:56 -03:00
|
|
|
# SQLite 3
|
2022-05-09 05:06:03 -03:00
|
|
|
**/*sqlite* @berkerpeksag @erlend-aasland
|
2019-04-16 10:54:56 -03:00
|
|
|
|
2017-08-04 23:00:06 -03:00
|
|
|
# subprocess
|
2019-09-13 10:36:26 -03:00
|
|
|
/Lib/subprocess.py @gpshead
|
|
|
|
/Lib/test/test_subprocess.py @gpshead
|
|
|
|
/Modules/*subprocess* @gpshead
|
2017-08-15 14:21:34 -03:00
|
|
|
|
|
|
|
# Windows
|
|
|
|
/PC/ @python/windows-team
|
2017-09-25 13:58:10 -03:00
|
|
|
/PCbuild/ @python/windows-team
|
2017-08-15 14:21:34 -03:00
|
|
|
|
2019-04-16 10:54:56 -03:00
|
|
|
# Urllib
|
|
|
|
**/*robotparser* @berkerpeksag
|
|
|
|
|
2017-08-15 14:21:34 -03:00
|
|
|
# Windows installer packages
|
|
|
|
/Tools/msi/ @python/windows-team
|
|
|
|
/Tools/nuget/ @python/windows-team
|
2017-09-04 16:31:15 -03:00
|
|
|
|
2019-11-21 05:38:51 -04:00
|
|
|
# Misc
|
2017-09-04 16:31:15 -03:00
|
|
|
**/*itertools* @rhettinger
|
|
|
|
**/*collections* @rhettinger
|
|
|
|
**/*random* @rhettinger
|
|
|
|
**/*queue* @rhettinger
|
|
|
|
**/*bisect* @rhettinger
|
|
|
|
**/*heapq* @rhettinger
|
2018-10-21 01:22:15 -03:00
|
|
|
**/*functools* @rhettinger
|
2022-03-06 22:04:58 -04:00
|
|
|
**/*decimal* @rhettinger
|
2017-10-04 23:15:11 -03:00
|
|
|
|
2017-12-05 16:52:19 -04:00
|
|
|
**/*dataclasses* @ericvsmith
|
|
|
|
|
2017-10-04 23:15:11 -03:00
|
|
|
**/*idlelib* @terryjreedy
|
2017-12-05 17:56:39 -04:00
|
|
|
|
2022-10-20 10:45:34 -03:00
|
|
|
**/*typing* @gvanrossum @Fidget-Spinner @JelleZijlstra @AlexWaygood
|
2018-10-23 10:37:02 -03:00
|
|
|
|
2019-11-21 05:38:51 -04:00
|
|
|
**/*ftplib @giampaolo
|
|
|
|
**/*shutil @giampaolo
|
|
|
|
|
2019-11-22 18:28:41 -04:00
|
|
|
**/*enum* @ethanfurman
|
|
|
|
**/*cgi* @ethanfurman
|
2019-12-04 04:18:31 -04:00
|
|
|
**/*tarfile* @ethanfurman
|
2019-11-22 18:28:41 -04:00
|
|
|
|
2022-03-08 04:26:13 -04:00
|
|
|
**/*tomllib* @encukou
|
|
|
|
|
2018-10-23 10:37:02 -03:00
|
|
|
# macOS
|
|
|
|
/Mac/ @python/macos-team
|
|
|
|
**/*osx_support* @python/macos-team
|
2022-03-30 15:34:29 -03:00
|
|
|
|
|
|
|
# pathlib
|
|
|
|
**/*pathlib* @brettcannon
|