blob: d751a918d0dc0646f592174f7bcf236f46599165 [file] [log] [blame]
Mariatta00fce692017-07-31 20:56:12 -07001# See https://help.github.com/articles/about-codeowners/
2# for more info about CODEOWNERS file
3
4# It uses the same pattern rule for gitignore file
5# https://git-scm.com/docs/gitignore#_pattern_format
6
Yury Selivanov9d8e6ec2017-08-01 18:41:33 -04007# asyncio
Andrew Svetlov02e4b7f2017-12-18 18:20:42 +02008**/*asyncio* @1st1 @asvetlov
Yury Selivanov9d8e6ec2017-08-01 18:41:33 -04009
10# Core
11**/*genobject* @1st1
12
Mariatta00fce692017-07-31 20:56:12 -070013# Hashing
Alex Gaynor3239cf12017-09-04 13:40:45 -040014**/*hashlib* @python/crypto-team
15**/*pyhash* @python/crypto-team
Mariatta00fce692017-07-31 20:56:12 -070016
Brett Cannon9eef9e82017-08-01 14:51:17 -070017# Import (including importlib)
Brett Cannond255fea2017-08-04 14:14:32 -070018**/*import* @python/import-team
Brett Cannon9eef9e82017-08-01 14:51:17 -070019
Mariatta00fce692017-07-31 20:56:12 -070020# SSL
Alex Gaynor3239cf12017-09-04 13:40:45 -040021**/*ssl* @python/crypto-team
22
23# CSPRNG
24Python/bootstrap_hash.c @python/crypto-team
R. David Murrayd9d55c92017-08-02 18:50:50 -040025
26# Email and related
Barry Warsaw1a589a62017-09-04 15:19:26 -040027**/*mail* @python/email-team
28**/*smtp* @python/email-team
29**/*mime* @python/email-team
30**/*imap* @python/email-team
31**/*poplib* @python/email-team
Gregory P. Smith60a66322017-08-04 20:00:06 -060032
33# subprocess
34**/*subprocess* @gpshead
Steve Dower1f512b92017-08-15 10:21:34 -070035
36# Windows
37/PC/ @python/windows-team
Stefan Grönkef1502d02017-09-25 18:58:10 +020038/PCbuild/ @python/windows-team
Steve Dower1f512b92017-08-15 10:21:34 -070039
40# Windows installer packages
41/Tools/msi/ @python/windows-team
42/Tools/nuget/ @python/windows-team
Raymond Hettingerf58e6e22017-09-04 12:31:15 -070043
44**/*itertools* @rhettinger
45**/*collections* @rhettinger
46**/*random* @rhettinger
47**/*queue* @rhettinger
48**/*bisect* @rhettinger
49**/*heapq* @rhettinger
50**/*functools* @ncoghlan @rhettinger
51**/*decimal* @rhettinger @skrah
Terry Jan Reedy55fd0662017-10-04 22:15:11 -040052
Eric V. Smith2582f6f2017-12-05 15:52:19 -050053**/*dataclasses* @ericvsmith
54
Terry Jan Reedy55fd0662017-10-04 22:15:11 -040055**/*idlelib* @terryjreedy
Guido van Rossum5e8cbcc2017-12-05 13:56:39 -080056
57**/*typing* @gvanrossum @ilevkivskyi