2017-08-01 03:56:12 +00: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
|
|
|
|
|
2017-08-01 22:41:33 +00:00
|
|
|
# asyncio
|
2017-12-18 16:20:42 +00:00
|
|
|
**/*asyncio* @1st1 @asvetlov
|
2017-08-01 22:41:33 +00:00
|
|
|
|
|
|
|
# Core
|
2018-01-23 06:59:50 +00:00
|
|
|
**/*context* @1st1
|
2017-08-01 22:41:33 +00:00
|
|
|
**/*genobject* @1st1
|
2018-01-23 06:59:50 +00:00
|
|
|
**/*hamt* @1st1
|
2017-08-01 22:41:33 +00:00
|
|
|
|
2017-08-01 03:56:12 +00:00
|
|
|
# Hashing
|
2017-09-04 17:40:45 +00:00
|
|
|
**/*hashlib* @python/crypto-team
|
|
|
|
**/*pyhash* @python/crypto-team
|
2017-08-01 03:56:12 +00:00
|
|
|
|
2018-09-15 03:14:16 +00:00
|
|
|
# HTML
|
|
|
|
/Lib/html/ @ezio-melotti
|
|
|
|
/Lib/_markupbase.py @ezio-melotti
|
|
|
|
/Lib/test/test_html*.py @ezio-melotti
|
|
|
|
|
2018-01-03 19:32:22 +00:00
|
|
|
# Import (including importlib).
|
|
|
|
# Ignoring importlib.h so as to not get flagged on
|
|
|
|
# all pull requests that change the the emitted
|
|
|
|
# bytecode.
|
|
|
|
**/*import*.c @python/import-team
|
|
|
|
**/*import*.py @python/import-team
|
|
|
|
|
2017-08-01 21:51:17 +00:00
|
|
|
|
2017-08-01 03:56:12 +00:00
|
|
|
# SSL
|
2017-09-04 17:40:45 +00:00
|
|
|
**/*ssl* @python/crypto-team
|
|
|
|
|
|
|
|
# CSPRNG
|
|
|
|
Python/bootstrap_hash.c @python/crypto-team
|
2017-08-02 22:50:50 +00:00
|
|
|
|
|
|
|
# Email and related
|
2017-09-04 19:19:26 +00:00
|
|
|
**/*mail* @python/email-team
|
|
|
|
**/*smtp* @python/email-team
|
|
|
|
**/*mime* @python/email-team
|
|
|
|
**/*imap* @python/email-team
|
|
|
|
**/*poplib* @python/email-team
|
2017-08-05 02:00:06 +00:00
|
|
|
|
|
|
|
# subprocess
|
|
|
|
**/*subprocess* @gpshead
|
2017-08-15 17:21:34 +00:00
|
|
|
|
|
|
|
# Windows
|
|
|
|
/PC/ @python/windows-team
|
2017-09-25 16:58:10 +00:00
|
|
|
/PCbuild/ @python/windows-team
|
2017-08-15 17:21:34 +00:00
|
|
|
|
|
|
|
# Windows installer packages
|
|
|
|
/Tools/msi/ @python/windows-team
|
|
|
|
/Tools/nuget/ @python/windows-team
|
2017-09-04 19:31:15 +00:00
|
|
|
|
|
|
|
**/*itertools* @rhettinger
|
|
|
|
**/*collections* @rhettinger
|
|
|
|
**/*random* @rhettinger
|
|
|
|
**/*queue* @rhettinger
|
|
|
|
**/*bisect* @rhettinger
|
|
|
|
**/*heapq* @rhettinger
|
2018-10-21 04:22:15 +00:00
|
|
|
**/*functools* @rhettinger
|
2017-09-04 19:31:15 +00:00
|
|
|
**/*decimal* @rhettinger @skrah
|
2017-10-05 02:15:11 +00:00
|
|
|
|
2017-12-05 20:52:19 +00:00
|
|
|
**/*dataclasses* @ericvsmith
|
|
|
|
|
2017-10-05 02:15:11 +00:00
|
|
|
**/*idlelib* @terryjreedy
|
2017-12-05 21:56:39 +00:00
|
|
|
|
|
|
|
**/*typing* @gvanrossum @ilevkivskyi
|