diff options
Diffstat (limited to '.github/CODEOWNERS')
-rw-r--r-- | .github/CODEOWNERS | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d751a91..b42e1c9 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -14,8 +14,13 @@ **/*hashlib* @python/crypto-team **/*pyhash* @python/crypto-team -# Import (including importlib) -**/*import* @python/import-team +# 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 + # SSL **/*ssl* @python/crypto-team |