Skip to content

Commit 2304f01

Browse files
authored
Merge branch 'python:main' into main
2 parents e641918 + 53e9e7d commit 2304f01

File tree

1,898 files changed

+89860
-38551
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,898 files changed

+89860
-38551
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM docker.io/library/fedora:37
1+
FROM docker.io/library/fedora:40
22

33
ENV CC=clang
44

5-
ENV WASI_SDK_VERSION=21
5+
ENV WASI_SDK_VERSION=22
66
ENV WASI_SDK_PATH=/opt/wasi-sdk
77

88
ENV WASMTIME_HOME=/opt/wasmtime
9-
ENV WASMTIME_VERSION=18.0.3
9+
ENV WASMTIME_VERSION=22.0.0
1010
ENV WASMTIME_CPU_ARCH=x86_64
1111

1212
RUN dnf -y --nodocs --setopt=install_weak_deps=False install /usr/bin/{blurb,clang,curl,git,ln,tar,xz} 'dnf-command(builddep)' && \

.github/CODEOWNERS

Lines changed: 35 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
# Build system
1515
configure* @erlend-aasland @corona10
16+
Makefile.pre.in @erlend-aasland
17+
Modules/Setup* @erlend-aasland
1618

1719
# asyncio
1820
**/*asyncio* @1st1 @asvetlov @gvanrossum @kumaraditya303 @willingc
@@ -29,19 +31,23 @@ Objects/type* @markshannon
2931
Objects/codeobject.c @markshannon
3032
Objects/frameobject.c @markshannon
3133
Objects/call.c @markshannon
32-
Python/ceval*.c @markshannon @gvanrossum
33-
Python/ceval*.h @markshannon @gvanrossum
34+
Python/ceval*.c @markshannon
35+
Python/ceval*.h @markshannon
3436
Python/compile.c @markshannon @iritkatriel
3537
Python/assemble.c @markshannon @iritkatriel
3638
Python/flowgraph.c @markshannon @iritkatriel
39+
Python/instruction_sequence.c @iritkatriel
3740
Python/ast_opt.c @isidentical
38-
Python/bytecodes.c @markshannon @gvanrossum
39-
Python/optimizer*.c @markshannon @gvanrossum
41+
Python/bytecodes.c @markshannon
42+
Python/optimizer*.c @markshannon
4043
Python/optimizer_analysis.c @Fidget-Spinner
4144
Python/optimizer_bytecodes.c @Fidget-Spinner
45+
Python/symtable.c @JelleZijlstra @carljm
46+
Lib/_pyrepl/* @pablogsal @lysnikolaou @ambv
4247
Lib/test/test_patma.py @brandtbucher
4348
Lib/test/test_type_*.py @JelleZijlstra
44-
Lib/test/test_capi/test_misc.py @markshannon @gvanrossum
49+
Lib/test/test_capi/test_misc.py @markshannon
50+
Lib/test/test_pyrepl/* @pablogsal @lysnikolaou @ambv
4551
Tools/c-analyzer/ @ericsnowcurrently
4652

4753
# dbm
@@ -66,17 +72,15 @@ Include/internal/pycore_freelist.h @ericsnowcurrently
6672
Include/internal/pycore_global_objects.h @ericsnowcurrently
6773
Include/internal/pycore_obmalloc.h @ericsnowcurrently
6874
Include/internal/pycore_pymem.h @ericsnowcurrently
75+
Include/internal/pycore_stackref.h @Fidget-Spinner
6976
Modules/main.c @ericsnowcurrently
7077
Programs/_bootstrap_python.c @ericsnowcurrently
7178
Programs/python.c @ericsnowcurrently
7279
Tools/build/generate_global_objects.py @ericsnowcurrently
7380

7481
# Exceptions
75-
Lib/traceback.py @iritkatriel
7682
Lib/test/test_except*.py @iritkatriel
77-
Lib/test/test_traceback.py @iritkatriel
7883
Objects/exceptions.c @iritkatriel
79-
Python/traceback.c @iritkatriel
8084

8185
# Hashing
8286
**/*hashlib* @gpshead @tiran
@@ -150,13 +154,13 @@ Include/internal/pycore_time.h @pganssle @abalkin
150154
/Lib/test/test_tokenize.py @pablogsal @lysnikolaou
151155

152156
# Code generator
153-
/Tools/cases_generator/ @gvanrossum
157+
/Tools/cases_generator/ @markshannon
154158

155159
# AST
156-
Python/ast.c @isidentical
157-
Parser/asdl.py @isidentical
158-
Parser/asdl_c.py @isidentical
159-
Lib/ast.py @isidentical
160+
Python/ast.c @isidentical @JelleZijlstra
161+
Parser/asdl.py @isidentical @JelleZijlstra
162+
Parser/asdl_c.py @isidentical @JelleZijlstra
163+
Lib/ast.py @isidentical @JelleZijlstra
160164

161165
# Mock
162166
/Lib/unittest/mock.py @cjw296
@@ -173,6 +177,10 @@ Lib/ast.py @isidentical
173177
/Lib/test/test_subprocess.py @gpshead
174178
/Modules/*subprocess* @gpshead
175179

180+
# debugger
181+
**/*pdb* @gaogaotiantian
182+
**/*bdb* @gaogaotiantian
183+
176184
# Limited C API & stable ABI
177185
Tools/build/stable_abi.py @encukou
178186
Misc/stable_abi.toml @encukou
@@ -194,7 +202,6 @@ Doc/c-api/stable.rst @encukou
194202
**/*itertools* @rhettinger
195203
**/*collections* @rhettinger
196204
**/*random* @rhettinger
197-
**/*queue* @rhettinger
198205
**/*bisect* @rhettinger
199206
**/*heapq* @rhettinger
200207
**/*functools* @rhettinger
@@ -205,6 +212,7 @@ Doc/c-api/stable.rst @encukou
205212
**/*ensurepip* @pfmoore @pradyunsg
206213

207214
**/*idlelib* @terryjreedy
215+
/Doc/library/idle.rst @terryjreedy
208216

209217
**/*typing* @JelleZijlstra @AlexWaygood
210218

@@ -240,9 +248,21 @@ Doc/howto/clinic.rst @erlend-aasland
240248
**/*interpreteridobject.* @ericsnowcurrently
241249
**/*crossinterp* @ericsnowcurrently
242250
Lib/test/support/interpreters/ @ericsnowcurrently
243-
Modules/_xx*interp*module.c @ericsnowcurrently
251+
Modules/_interp*module.c @ericsnowcurrently
244252
Lib/test/test_interpreters/ @ericsnowcurrently
245253

254+
# Android
255+
**/*Android* @mhsmith
256+
**/*android* @mhsmith
257+
258+
# iOS (but not termios)
259+
**/iOS* @freakboy3742
260+
**/ios* @freakboy3742
261+
**/*_iOS* @freakboy3742
262+
**/*_ios* @freakboy3742
263+
**/*-iOS* @freakboy3742
264+
**/*-ios* @freakboy3742
265+
246266
# WebAssembly
247267
/Tools/wasm/ @brettcannon
248268

0 commit comments

Comments
 (0)