Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commiteb89d4c

Browse files
committed
Merge branch 'main' into strong-refs-for-bg-tasks
2 parents5d2b57e +2c472d3 commiteb89d4c

File tree

1,629 files changed

+105552
-61624
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,629 files changed

+105552
-61624
lines changed

‎.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} && \

‎.gitattributes

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ Lib/test/cjkencodings/* noeol
2727
Lib/test/tokenizedata/coding20731.pynoeol
2828
Lib/test/decimaltestdata/*.decTestnoeol
2929
Lib/test/test_email/data/*.txtnoeol
30-
Lib/test/test_importlib/resources/data01/*noeol
31-
Lib/test/test_importlib/resources/namespacedata01/*noeol
3230
Lib/test/xmltestdata/*noeol
3331

3432
# Shell scripts should have LF even on Windows because of Cygwin

‎.github/CODEOWNERS

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ Objects/frameobject.c @markshannon
3333
Objects/call.c@markshannon
3434
Python/ceval*.c@markshannon
3535
Python/ceval*.h@markshannon
36+
Python/codegen.c@markshannon@iritkatriel
3637
Python/compile.c@markshannon@iritkatriel
3738
Python/assemble.c@markshannon@iritkatriel
3839
Python/flowgraph.c@markshannon@iritkatriel
3940
Python/instruction_sequence.c@iritkatriel
40-
Python/ast_opt.c@isidentical
4141
Python/bytecodes.c@markshannon
4242
Python/optimizer*.c@markshannon
4343
Python/optimizer_analysis.c@Fidget-Spinner
@@ -72,6 +72,7 @@ Include/internal/pycore_freelist.h @ericsnowcurrently
7272
Include/internal/pycore_global_objects.h@ericsnowcurrently
7373
Include/internal/pycore_obmalloc.h@ericsnowcurrently
7474
Include/internal/pycore_pymem.h@ericsnowcurrently
75+
Include/internal/pycore_stackref.h@Fidget-Spinner
7576
Modules/main.c@ericsnowcurrently
7677
Programs/_bootstrap_python.c@ericsnowcurrently
7778
Programs/python.c@ericsnowcurrently
@@ -156,10 +157,12 @@ Include/internal/pycore_time.h @pganssle @abalkin
156157
/Tools/cases_generator/@markshannon
157158

158159
# AST
159-
Python/ast.c@isidentical@JelleZijlstra
160-
Parser/asdl.py@isidentical@JelleZijlstra
161-
Parser/asdl_c.py@isidentical@JelleZijlstra
162-
Lib/ast.py@isidentical@JelleZijlstra
160+
Python/ast.c@isidentical@JelleZijlstra@eclips4
161+
Python/ast_opt.c@isidentical@eclips4
162+
Parser/asdl.py@isidentical@JelleZijlstra@eclips4
163+
Parser/asdl_c.py@isidentical@JelleZijlstra@eclips4
164+
Lib/ast.py@isidentical@JelleZijlstra@eclips4
165+
Lib/test/test_ast/@eclips4
163166

164167
# Mock
165168
/Lib/unittest/mock.py@cjw296
@@ -210,9 +213,11 @@ Doc/c-api/stable.rst @encukou
210213

211214
**/*ensurepip*@pfmoore@pradyunsg
212215

213-
**/*idlelib*@terryjreedy
214216
/Doc/library/idle.rst@terryjreedy
217+
**/*idlelib*@terryjreedy
218+
**/*turtledemo*@terryjreedy
215219

220+
**/*annotationlib*@JelleZijlstra
216221
**/*typing*@JelleZijlstra@AlexWaygood
217222

218223
**/*ftplib@giampaolo
@@ -273,3 +278,6 @@ Lib/test/test_interpreters/ @ericsnowcurrently
273278
# Config Parser
274279
Lib/configparser.py@jaraco
275280
Lib/test/test_configparser.py@jaraco
281+
282+
# Doc sections
283+
Doc/reference/@willingc

‎.github/ISSUE_TEMPLATE/crash.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ body:
3232
-"3.10"
3333
-"3.11"
3434
-"3.12"
35+
-"3.13"
3536
-"CPython main branch"
3637
validations:
3738
required:true

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp