Skip to content

Commit 4ffc1b2

Browse files
committed
Merge branch 'main' into json_ft
2 parents 67d942f + f84754b commit 4ffc1b2

1,351 files changed

Lines changed: 60196 additions & 29949 deletions

File tree

Some content is hidden

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

.azure-pipelines/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
trigger: ['main', '3.12', '3.11', '3.10', '3.9', '3.8', '3.7']
1+
trigger: ['main', '3.13', '3.12', '3.11', '3.10', '3.9', '3.8']
22

33
jobs:
44
- job: Prebuild

.azure-pipelines/posix-deps-apt.sh

Lines changed: 0 additions & 27 deletions
This file was deleted.

.azure-pipelines/posix-steps.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.azure-pipelines/pr.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.devcontainer/Dockerfile

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

33
ENV CC=clang
44

5-
ENV WASI_SDK_VERSION=21
5+
ENV WASI_SDK_VERSION=24
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)' && \
1313
dnf -y --nodocs --setopt=install_weak_deps=False builddep python3 && \
1414
dnf -y clean all
1515

1616
RUN mkdir ${WASI_SDK_PATH} && \
17-
curl --location https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_SDK_VERSION}/wasi-sdk-${WASI_SDK_VERSION}.0-linux.tar.gz | \
17+
curl --location https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_SDK_VERSION}/wasi-sdk-${WASI_SDK_VERSION}.0-x86_64-linux.tar.gz | \
1818
tar --strip-components 1 --directory ${WASI_SDK_PATH} --extract --gunzip
1919

2020
RUN mkdir --parents ${WASMTIME_HOME} && \

.github/CODEOWNERS

Lines changed: 15 additions & 6 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
@@ -40,6 +42,7 @@ Python/bytecodes.c @markshannon
4042
Python/optimizer*.c @markshannon
4143
Python/optimizer_analysis.c @Fidget-Spinner
4244
Python/optimizer_bytecodes.c @Fidget-Spinner
45+
Python/symtable.c @JelleZijlstra @carljm
4346
Lib/_pyrepl/* @pablogsal @lysnikolaou @ambv
4447
Lib/test/test_patma.py @brandtbucher
4548
Lib/test/test_type_*.py @JelleZijlstra
@@ -69,6 +72,7 @@ Include/internal/pycore_freelist.h @ericsnowcurrently
6972
Include/internal/pycore_global_objects.h @ericsnowcurrently
7073
Include/internal/pycore_obmalloc.h @ericsnowcurrently
7174
Include/internal/pycore_pymem.h @ericsnowcurrently
75+
Include/internal/pycore_stackref.h @Fidget-Spinner
7276
Modules/main.c @ericsnowcurrently
7377
Programs/_bootstrap_python.c @ericsnowcurrently
7478
Programs/python.c @ericsnowcurrently
@@ -153,10 +157,10 @@ Include/internal/pycore_time.h @pganssle @abalkin
153157
/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,7 +212,9 @@ Doc/c-api/stable.rst @encukou
205212
**/*ensurepip* @pfmoore @pradyunsg
206213

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

217+
**/*annotationlib* @JelleZijlstra
209218
**/*typing* @JelleZijlstra @AlexWaygood
210219

211220
**/*ftplib @giampaolo
@@ -240,7 +249,7 @@ Doc/howto/clinic.rst @erlend-aasland
240249
**/*interpreteridobject.* @ericsnowcurrently
241250
**/*crossinterp* @ericsnowcurrently
242251
Lib/test/support/interpreters/ @ericsnowcurrently
243-
Modules/_xx*interp*module.c @ericsnowcurrently
252+
Modules/_interp*module.c @ericsnowcurrently
244253
Lib/test/test_interpreters/ @ericsnowcurrently
245254

246255
# Android

0 commit comments

Comments
 (0)