1# See https://help.github.com/articles/about-codeowners/ 2# for more info about CODEOWNERS file 3 4# It uses the same pattern rule for gitignore file 5# https://git-scm.com/docs/gitignore#_pattern_format 6 7# asyncio 8**/*asyncio* @1st1 @asvetlov 9 10# Core 11**/*context* @1st1 12**/*genobject* @1st1 13**/*hamt* @1st1 14Objects/dict* @methane 15 16# Hashing 17**/*hashlib* @python/crypto-team @tiran 18**/*pyhash* @python/crypto-team @tiran 19**/*sha* @python/crypto-team @tiran 20**/*md5* @python/crypto-team @tiran 21**/*blake* @python/crypto-team @tiran 22/Modules/_blake2/** @python/crypto-team @tiran 23/Modules/_sha3/** @python/crypto-team @tiran 24 25 26# HTML 27/Lib/html/ @ezio-melotti 28/Lib/_markupbase.py @ezio-melotti 29/Lib/test/test_html*.py @ezio-melotti 30 31# Import (including importlib). 32# Ignoring importlib.h so as to not get flagged on 33# all pull requests that change the emitted 34# bytecode. 35**/*import*.c @brettcannon @encukou @ericsnowcurrently @ncoghlan @warsaw 36**/*import*.py @brettcannon @encukou @ericsnowcurrently @ncoghlan @warsaw 37 38 39# SSL 40**/*ssl* @python/crypto-team @tiran 41**/*.pem @python/crypto-team @tiran 42 43# CSPRNG 44Python/bootstrap_hash.c @python/crypto-team @tiran 45 46# Email and related 47**/*mail* @python/email-team 48**/*smtp* @python/email-team 49**/*mime* @python/email-team 50**/*imap* @python/email-team 51**/*poplib* @python/email-team 52 53# Parser/Pgen 54/Parser/pgen/ @pablogsal 55 56# SQLite 3 57**/*sqlite* @berkerpeksag 58 59# subprocess 60**/*subprocess* @gpshead 61 62# Windows 63/PC/ @python/windows-team 64/PCbuild/ @python/windows-team 65 66# Urllib 67**/*robotparser* @berkerpeksag 68 69# Windows installer packages 70/Tools/msi/ @python/windows-team 71/Tools/nuget/ @python/windows-team 72 73**/*itertools* @rhettinger 74**/*collections* @rhettinger 75**/*random* @rhettinger 76**/*queue* @rhettinger 77**/*bisect* @rhettinger 78**/*heapq* @rhettinger 79**/*functools* @rhettinger 80**/*decimal* @rhettinger @skrah 81 82**/*dataclasses* @ericvsmith 83 84**/*idlelib* @terryjreedy 85 86**/*typing* @gvanrossum @ilevkivskyi 87 88# macOS 89/Mac/ @python/macos-team 90**/*osx_support* @python/macos-team 91