diff options
author | Brett Cannon <brettcannon@users.noreply.github.com> | 2018-01-03 19:32:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-03 19:32:22 (GMT) |
commit | 811b2878dfc68dc3ecd81fb4b370c6e1f9ec69c2 (patch) | |
tree | f00720ed64b07be197604a5a6741c8b0f3f0201c /.github | |
parent | f190eb59e60e2ae7a7cbd396458389a7a076e0d3 (diff) | |
download | cpython-811b2878dfc68dc3ecd81fb4b370c6e1f9ec69c2.zip cpython-811b2878dfc68dc3ecd81fb4b370c6e1f9ec69c2.tar.gz cpython-811b2878dfc68dc3ecd81fb4b370c6e1f9ec69c2.tar.bz2 |
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/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 |