Ignore importlib.h for automatic review requests from the import team. (GH-5087)

Otherwise the import team gets flagged for reviews any time the bytecode for
importlib.h changes (e.g new bytecode, optimizations, etc.).
This commit is contained in:
Brett Cannon 2018-01-03 11:32:22 -08:00 committed by GitHub
parent f190eb59e6
commit 811b2878df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

9
.github/CODEOWNERS vendored
View File

@ -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