From 811b2878dfc68dc3ecd81fb4b370c6e1f9ec69c2 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 3 Jan 2018 11:32:22 -0800 Subject: [PATCH] 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.). --- .github/CODEOWNERS | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d751a918d0d..b42e1c93d8f 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