Staging
v0.5.1
https://github.com/python/cpython
Revision ef5f4ba96e05f61ad3baca502012085f31e99342 authored by Miss Islington (bot) on 12 June 2018, 04:26:30 UTC, committed by Ned Deily on 12 June 2018, 04:26:30 UTC
(cherry picked from commit 04290cb9945eca1a97f6924495256c15f29fab41)

Co-authored-by: Ned Deily <nad@python.org>
1 parent 8379b70
Raw File
Tip revision: ef5f4ba96e05f61ad3baca502012085f31e99342 authored by Miss Islington (bot) on 12 June 2018, 04:26:30 UTC
bpo-25612: Add minimal What's New in 3.7 entry (GH-7656) (GH-7658)
Tip revision: ef5f4ba
CODEOWNERS
# See https://help.github.com/articles/about-codeowners/
# for more info about CODEOWNERS file

# It uses the same pattern rule for gitignore file
# https://git-scm.com/docs/gitignore#_pattern_format

# asyncio
**/*asyncio*                  @1st1 @asvetlov

# Core
**/*context*                  @1st1
**/*genobject*                @1st1
**/*hamt*                     @1st1

# Hashing
**/*hashlib*                  @python/crypto-team
**/*pyhash*                   @python/crypto-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

# CSPRNG
Python/bootstrap_hash.c       @python/crypto-team

# Email and related
**/*mail*                     @python/email-team
**/*smtp*                     @python/email-team
**/*mime*                     @python/email-team
**/*imap*                     @python/email-team
**/*poplib*                   @python/email-team

# subprocess
**/*subprocess*               @gpshead

# Windows
/PC/                          @python/windows-team
/PCbuild/                     @python/windows-team

# Windows installer packages
/Tools/msi/                   @python/windows-team
/Tools/nuget/                 @python/windows-team

**/*itertools*                @rhettinger
**/*collections*              @rhettinger
**/*random*                   @rhettinger
**/*queue*                    @rhettinger
**/*bisect*                   @rhettinger
**/*heapq*                    @rhettinger
**/*functools*                @ncoghlan @rhettinger
**/*decimal*                  @rhettinger @skrah

**/*dataclasses*              @ericvsmith

**/*idlelib*                  @terryjreedy

**/*typing*                   @gvanrossum @ilevkivskyi
back to top