Skip to content

Commit 4f493cd

Browse files
merge conflict
2 parents efd5863 + d6954b6 commit 4f493cd

File tree

2,766 files changed

+239776
-113089
lines changed

Some content is hidden

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

2,766 files changed

+239776
-113089
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
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=20
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=14.0.4
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: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ Lib/test/cjkencodings/* noeol
2727
Lib/test/tokenizedata/coding20731.py noeol
2828
Lib/test/decimaltestdata/*.decTest noeol
2929
Lib/test/test_email/data/*.txt noeol
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
@@ -77,11 +75,14 @@ Include/internal/pycore_opcode.h generated
7775
Include/internal/pycore_opcode_metadata.h generated
7876
Include/internal/pycore_*_generated.h generated
7977
Include/internal/pycore_uop_ids.h generated
78+
Include/internal/pycore_uop_metadata.h generated
8079
Include/opcode.h generated
8180
Include/opcode_ids.h generated
8281
Include/token.h generated
8382
Lib/_opcode_metadata.py generated
8483
Lib/keyword.py generated
84+
Lib/test/certdata/*.pem generated
85+
Lib/test/certdata/*.0 generated
8586
Lib/test/levenshtein_examples.json generated
8687
Lib/test/test_stable_abi_ctypes.py generated
8788
Lib/token.py generated
@@ -94,7 +95,7 @@ Programs/test_frozenmain.h generated
9495
Python/Python-ast.c generated
9596
Python/executor_cases.c.h generated
9697
Python/generated_cases.c.h generated
97-
Python/tier2_redundancy_eliminator_cases.c.h generated
98+
Python/optimizer_cases.c.h generated
9899
Python/opcode_targets.h generated
99100
Python/stdlib_module_names.h generated
100101
Tools/peg_generator/pegen/grammar_parser.py generated

.github/CODEOWNERS

Lines changed: 50 additions & 18 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
36+
Python/codegen.c @markshannon @iritkatriel
3437
Python/compile.c @markshannon @iritkatriel
3538
Python/assemble.c @markshannon @iritkatriel
3639
Python/flowgraph.c @markshannon @iritkatriel
37-
Python/ast_opt.c @isidentical
38-
Python/bytecodes.c @markshannon @gvanrossum
39-
Python/optimizer*.c @markshannon @gvanrossum
40+
Python/instruction_sequence.c @iritkatriel
41+
Python/bytecodes.c @markshannon
42+
Python/optimizer*.c @markshannon
4043
Python/optimizer_analysis.c @Fidget-Spinner
41-
Python/tier2_redundancy_eliminator_bytecodes.c @Fidget-Spinner
44+
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
@@ -119,7 +123,7 @@ Python/dynload_*.c @ericsnowcurrently
119123
Lib/test/test_module/ @ericsnowcurrently
120124
Doc/c-api/module.rst @ericsnowcurrently
121125
**/*importlib/resources/* @jaraco @warsaw @FFY00
122-
**/importlib/metadata/* @jaraco @warsaw
126+
**/*importlib/metadata/* @jaraco @warsaw
123127

124128
# Dates and times
125129
**/*datetime* @pganssle @abalkin
@@ -150,13 +154,15 @@ 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 @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
160166

161167
# Mock
162168
/Lib/unittest/mock.py @cjw296
@@ -173,6 +179,10 @@ Lib/ast.py @isidentical
173179
/Lib/test/test_subprocess.py @gpshead
174180
/Modules/*subprocess* @gpshead
175181

182+
# debugger
183+
**/*pdb* @gaogaotiantian
184+
**/*bdb* @gaogaotiantian
185+
176186
# Limited C API & stable ABI
177187
Tools/build/stable_abi.py @encukou
178188
Misc/stable_abi.toml @encukou
@@ -194,7 +204,6 @@ Doc/c-api/stable.rst @encukou
194204
**/*itertools* @rhettinger
195205
**/*collections* @rhettinger
196206
**/*random* @rhettinger
197-
**/*queue* @rhettinger
198207
**/*bisect* @rhettinger
199208
**/*heapq* @rhettinger
200209
**/*functools* @rhettinger
@@ -204,8 +213,11 @@ Doc/c-api/stable.rst @encukou
204213

205214
**/*ensurepip* @pfmoore @pradyunsg
206215

216+
/Doc/library/idle.rst @terryjreedy
207217
**/*idlelib* @terryjreedy
218+
**/*turtledemo* @terryjreedy
208219

220+
**/*annotationlib* @JelleZijlstra
209221
**/*typing* @JelleZijlstra @AlexWaygood
210222

211223
**/*ftplib @giampaolo
@@ -240,12 +252,32 @@ Doc/howto/clinic.rst @erlend-aasland
240252
**/*interpreteridobject.* @ericsnowcurrently
241253
**/*crossinterp* @ericsnowcurrently
242254
Lib/test/support/interpreters/ @ericsnowcurrently
243-
Modules/_xx*interp*module.c @ericsnowcurrently
255+
Modules/_interp*module.c @ericsnowcurrently
244256
Lib/test/test_interpreters/ @ericsnowcurrently
245257

258+
# Android
259+
**/*Android* @mhsmith
260+
**/*android* @mhsmith
261+
262+
# iOS (but not termios)
263+
**/iOS* @freakboy3742
264+
**/ios* @freakboy3742
265+
**/*_iOS* @freakboy3742
266+
**/*_ios* @freakboy3742
267+
**/*-iOS* @freakboy3742
268+
**/*-ios* @freakboy3742
269+
246270
# WebAssembly
247271
/Tools/wasm/ @brettcannon
248272

249273
# SBOM
274+
/Misc/externals.spdx.json @sethmlarson
250275
/Misc/sbom.spdx.json @sethmlarson
251276
/Tools/build/generate_sbom.py @sethmlarson
277+
278+
# Config Parser
279+
Lib/configparser.py @jaraco
280+
Lib/test/test_configparser.py @jaraco
281+
282+
# Doc sections
283+
Doc/reference/ @willingc

0 commit comments

Comments
 (0)