summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2024-06-06 16:25:05 (GMT)
committerGitHub <noreply@github.com>2024-06-06 16:25:05 (GMT)
commitd50a7c478feb4037e65fcaea453d9ecc00259dd9 (patch)
tree24c295648dda1e46faaa80c421d19abcc4b3b5ec /.github
parent78634cfa3dd4b542897835d5f097604dbeb0f3fd (diff)
downloadcpython-d50a7c478feb4037e65fcaea453d9ecc00259dd9.zip
cpython-d50a7c478feb4037e65fcaea453d9ecc00259dd9.tar.gz
cpython-d50a7c478feb4037e65fcaea453d9ecc00259dd9.tar.bz2
CODEOWNERS: Add myself to symtable and AST (#120139)
Co-authored-by: Carl Meyer <carl@oddbird.net>
Diffstat (limited to '.github')
-rw-r--r--.github/CODEOWNERS9
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index ca5c8aa..c7021b3 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -40,6 +40,7 @@ Python/bytecodes.c @markshannon
Python/optimizer*.c @markshannon
Python/optimizer_analysis.c @Fidget-Spinner
Python/optimizer_bytecodes.c @Fidget-Spinner
+Python/symtable.c @JelleZijlstra @carljm
Lib/_pyrepl/* @pablogsal @lysnikolaou @ambv
Lib/test/test_patma.py @brandtbucher
Lib/test/test_type_*.py @JelleZijlstra
@@ -153,10 +154,10 @@ Include/internal/pycore_time.h @pganssle @abalkin
/Tools/cases_generator/ @markshannon
# AST
-Python/ast.c @isidentical
-Parser/asdl.py @isidentical
-Parser/asdl_c.py @isidentical
-Lib/ast.py @isidentical
+Python/ast.c @isidentical @JelleZijlstra
+Parser/asdl.py @isidentical @JelleZijlstra
+Parser/asdl_c.py @isidentical @JelleZijlstra
+Lib/ast.py @isidentical @JelleZijlstra
# Mock
/Lib/unittest/mock.py @cjw296