summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBrett Cannon <brettcannon@users.noreply.github.com>2018-01-03 11:32:22 -0800
committerGitHub <noreply@github.com>2018-01-03 11:32:22 -0800
commit811b2878dfc68dc3ecd81fb4b370c6e1f9ec69c2 (patch)
treef00720ed64b07be197604a5a6741c8b0f3f0201c /.github
parentf190eb59e60e2ae7a7cbd396458389a7a076e0d3 (diff)
downloadcpython-git-811b2878dfc68dc3ecd81fb4b370c6e1f9ec69c2.tar.gz
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.).
Diffstat (limited to '.github')
-rw-r--r--.github/CODEOWNERS9
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index d751a918d0..b42e1c93d8 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