From: Brett Cannon Date: Wed, 3 Jan 2018 19:32:22 +0000 (-0800) Subject: Ignore importlib.h for automatic review requests from the import team. (GH-5087) X-Git-Tag: v3.7.0a4~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=811b2878dfc68dc3ecd81fb4b370c6e1f9ec69c2;p=thirdparty%2FPython%2Fcpython.git 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.). --- diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d751a918d0dc..b42e1c93d8fb 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