Mariatta | 00fce69 | 2017-07-31 20:56:12 -0700 | [diff] [blame] | 1 | # 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 Selivanov | 9d8e6ec | 2017-08-01 18:41:33 -0400 | [diff] [blame] | 7 | # asyncio |
Andrew Svetlov | 02e4b7f | 2017-12-18 18:20:42 +0200 | [diff] [blame] | 8 | **/*asyncio* @1st1 @asvetlov |
Yury Selivanov | 9d8e6ec | 2017-08-01 18:41:33 -0400 | [diff] [blame] | 9 | |
| 10 | # Core |
Yury Selivanov | d83671e | 2018-01-23 01:59:50 -0500 | [diff] [blame] | 11 | **/*context* @1st1 |
Yury Selivanov | 9d8e6ec | 2017-08-01 18:41:33 -0400 | [diff] [blame] | 12 | **/*genobject* @1st1 |
Yury Selivanov | d83671e | 2018-01-23 01:59:50 -0500 | [diff] [blame] | 13 | **/*hamt* @1st1 |
Yury Selivanov | 9d8e6ec | 2017-08-01 18:41:33 -0400 | [diff] [blame] | 14 | |
Mariatta | 00fce69 | 2017-07-31 20:56:12 -0700 | [diff] [blame] | 15 | # Hashing |
Alex Gaynor | 3239cf1 | 2017-09-04 13:40:45 -0400 | [diff] [blame] | 16 | **/*hashlib* @python/crypto-team |
| 17 | **/*pyhash* @python/crypto-team |
Mariatta | 00fce69 | 2017-07-31 20:56:12 -0700 | [diff] [blame] | 18 | |
Brett Cannon | 811b287 | 2018-01-03 11:32:22 -0800 | [diff] [blame] | 19 | # Import (including importlib). |
| 20 | # Ignoring importlib.h so as to not get flagged on |
| 21 | # all pull requests that change the the emitted |
| 22 | # bytecode. |
| 23 | **/*import*.c @python/import-team |
| 24 | **/*import*.py @python/import-team |
| 25 | |
Brett Cannon | 9eef9e8 | 2017-08-01 14:51:17 -0700 | [diff] [blame] | 26 | |
Mariatta | 00fce69 | 2017-07-31 20:56:12 -0700 | [diff] [blame] | 27 | # SSL |
Alex Gaynor | 3239cf1 | 2017-09-04 13:40:45 -0400 | [diff] [blame] | 28 | **/*ssl* @python/crypto-team |
| 29 | |
| 30 | # CSPRNG |
| 31 | Python/bootstrap_hash.c @python/crypto-team |
R. David Murray | d9d55c9 | 2017-08-02 18:50:50 -0400 | [diff] [blame] | 32 | |
| 33 | # Email and related |
Barry Warsaw | 1a589a6 | 2017-09-04 15:19:26 -0400 | [diff] [blame] | 34 | **/*mail* @python/email-team |
| 35 | **/*smtp* @python/email-team |
| 36 | **/*mime* @python/email-team |
| 37 | **/*imap* @python/email-team |
| 38 | **/*poplib* @python/email-team |
Gregory P. Smith | 60a6632 | 2017-08-04 20:00:06 -0600 | [diff] [blame] | 39 | |
| 40 | # subprocess |
| 41 | **/*subprocess* @gpshead |
Steve Dower | 1f512b9 | 2017-08-15 10:21:34 -0700 | [diff] [blame] | 42 | |
| 43 | # Windows |
| 44 | /PC/ @python/windows-team |
Stefan Grönke | f1502d0 | 2017-09-25 18:58:10 +0200 | [diff] [blame] | 45 | /PCbuild/ @python/windows-team |
Steve Dower | 1f512b9 | 2017-08-15 10:21:34 -0700 | [diff] [blame] | 46 | |
| 47 | # Windows installer packages |
| 48 | /Tools/msi/ @python/windows-team |
| 49 | /Tools/nuget/ @python/windows-team |
Raymond Hettinger | f58e6e2 | 2017-09-04 12:31:15 -0700 | [diff] [blame] | 50 | |
| 51 | **/*itertools* @rhettinger |
| 52 | **/*collections* @rhettinger |
| 53 | **/*random* @rhettinger |
| 54 | **/*queue* @rhettinger |
| 55 | **/*bisect* @rhettinger |
| 56 | **/*heapq* @rhettinger |
| 57 | **/*functools* @ncoghlan @rhettinger |
| 58 | **/*decimal* @rhettinger @skrah |
Terry Jan Reedy | 55fd066 | 2017-10-04 22:15:11 -0400 | [diff] [blame] | 59 | |
Eric V. Smith | 2582f6f | 2017-12-05 15:52:19 -0500 | [diff] [blame] | 60 | **/*dataclasses* @ericvsmith |
| 61 | |
Terry Jan Reedy | 55fd066 | 2017-10-04 22:15:11 -0400 | [diff] [blame] | 62 | **/*idlelib* @terryjreedy |
Guido van Rossum | 5e8cbcc | 2017-12-05 13:56:39 -0800 | [diff] [blame] | 63 | |
| 64 | **/*typing* @gvanrossum @ilevkivskyi |