summaryrefslogtreecommitdiffstats
path: root/.github/CODEOWNERS
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2023-12-12 15:24:31 (GMT)
committerGitHub <noreply@github.com>2023-12-12 15:24:31 (GMT)
commit86a77f4e1a5ceaff1036b0072521e12752b5df47 (patch)
treececc78dab93112a3a92ae66fc0156630408063b3 /.github/CODEOWNERS
parentf26bfe4b25f7e5a4f68fcac26207b7175abad208 (diff)
downloadcpython-86a77f4e1a5ceaff1036b0072521e12752b5df47.zip
cpython-86a77f4e1a5ceaff1036b0072521e12752b5df47.tar.gz
cpython-86a77f4e1a5ceaff1036b0072521e12752b5df47.tar.bz2
gh-76785: Fixes for test.support.interpreters (gh-112982)
This involves a number of changes for PEP 734.
Diffstat (limited to '.github/CODEOWNERS')
-rw-r--r--.github/CODEOWNERS15
1 files changed, 14 insertions, 1 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index aa6d937..f8291d8 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -78,6 +78,11 @@ Python/traceback.c @iritkatriel
**/*importlib/resources/* @jaraco @warsaw @FFY00
**/importlib/metadata/* @jaraco @warsaw
+# Subinterpreters
+Lib/test/support/interpreters/** @ericsnowcurrently
+Modules/_xx*interp*module.c @ericsnowcurrently
+Lib/test/test_interpreters/** @ericsnowcurrently
+
# Dates and times
**/*datetime* @pganssle @abalkin
**/*str*time* @pganssle @abalkin
@@ -148,7 +153,15 @@ Doc/c-api/stable.rst @encukou
**/*itertools* @rhettinger
**/*collections* @rhettinger
**/*random* @rhettinger
-**/*queue* @rhettinger
+Doc/**/*queue* @rhettinger
+PCbuild/**/*queue* @rhettinger
+Modules/_queuemodule.c @rhettinger
+Lib/*queue*.py @rhettinger
+Lib/asyncio/*queue*.py @rhettinger
+Lib/multiprocessing/*queue*.py @rhettinger
+Lib/test/*queue*.py @rhettinger
+Lib/test_asyncio/*queue*.py @rhettinger
+Lib/test_multiprocessing/*queue*.py @rhettinger
**/*bisect* @rhettinger
**/*heapq* @rhettinger
**/*functools* @rhettinger