diff options
author | Gregory P. Smith <greg@krypto.org> | 2024-01-22 23:55:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-22 23:55:12 (GMT) |
commit | 57255236957573e73033d2d345028f5a676533a0 (patch) | |
tree | a99cdeb78728d60f20bbd15257149b7e237fbc97 | |
parent | 1d7bddd9612bcbaaedbc837e2936de773e855411 (diff) | |
download | cpython-57255236957573e73033d2d345028f5a676533a0.zip cpython-57255236957573e73033d2d345028f5a676533a0.tar.gz cpython-57255236957573e73033d2d345028f5a676533a0.tar.bz2 |
Add me to codeowners for hashlib & multiprocessing (#114454)
I already effectively own these. (multiprocessing reluctantly, but I've
spent enough time in the code of late, it is important, and and
championing some changes, so I may as well be looped in there).
-rw-r--r-- | .github/CODEOWNERS | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8038206..9587b39 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -50,13 +50,13 @@ Objects/exceptions.c @iritkatriel Python/traceback.c @iritkatriel # Hashing -**/*hashlib* @tiran -**/*pyhash* @tiran -**/*sha* @tiran -**/*md5* @tiran -**/*blake* @tiran -/Modules/_blake2/** @tiran -/Modules/_sha3/** @tiran +**/*hashlib* @gpshead @tiran +**/*pyhash* @gpshead @tiran +**/sha* @gpshead @tiran +Modules/md5* @gpshead @tiran +**/*blake* @gpshead @tiran +Modules/_blake2/** @gpshead @tiran +Modules/_hacl/** @gpshead # logging **/*logging* @vsajip @@ -120,6 +120,9 @@ Lib/ast.py @isidentical /Lib/unittest/mock.py @cjw296 /Lib/test/test_unittest/testmock/* @cjw296 +# multiprocessing +**/*multiprocessing* @gpshead + # SQLite 3 **/*sqlite* @berkerpeksag @erlend-aasland |