Skip to content

Commit bc284be

Browse files
Merge branch 'main' into pending-calls-linked-list
2 parents a5394fa + d2f1b0e commit bc284be

File tree

2,582 files changed

+190082
-109626
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,582 files changed

+190082
-109626
lines changed

.cirrus-DISABLED.yml

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

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ENV WASI_SDK_VERSION=20
66
ENV WASI_SDK_PATH=/opt/wasi-sdk
77

88
ENV WASMTIME_HOME=/opt/wasmtime
9-
ENV WASMTIME_VERSION=9.0.1
9+
ENV WASMTIME_VERSION=18.0.2
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)' && \

.editorconfig

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
root = true
22

3-
[*.{py,c,cpp,h,rst,md,yml}]
3+
[*.{py,c,cpp,h,js,rst,md,yml}]
44
trim_trailing_whitespace = true
55
insert_final_newline = true
66
indent_style = space
77

88
[*.{py,c,cpp,h}]
99
indent_size = 4
1010

11-
[*.yml]
11+
[*.rst]
12+
indent_size = 3
13+
14+
[*.{js,yml}]
1215
indent_size = 2

.gitattributes

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ Include/internal/pycore_ast_state.h generated
7676
Include/internal/pycore_opcode.h generated
7777
Include/internal/pycore_opcode_metadata.h generated
7878
Include/internal/pycore_*_generated.h generated
79+
Include/internal/pycore_uop_ids.h generated
80+
Include/internal/pycore_uop_metadata.h generated
7981
Include/opcode.h generated
8082
Include/opcode_ids.h generated
8183
Include/token.h generated
@@ -84,6 +86,7 @@ Lib/keyword.py generated
8486
Lib/test/levenshtein_examples.json generated
8587
Lib/test/test_stable_abi_ctypes.py generated
8688
Lib/token.py generated
89+
Misc/sbom.spdx.json generated
8790
Objects/typeslots.inc generated
8891
PC/python3dll.c generated
8992
Parser/parser.c generated
@@ -92,7 +95,7 @@ Programs/test_frozenmain.h generated
9295
Python/Python-ast.c generated
9396
Python/executor_cases.c.h generated
9497
Python/generated_cases.c.h generated
95-
Python/abstract_interp_cases.c.h generated
98+
Python/optimizer_cases.c.h generated
9699
Python/opcode_targets.h generated
97100
Python/stdlib_module_names.h generated
98101
Tools/peg_generator/pegen/grammar_parser.py generated

.github/CODEOWNERS

Lines changed: 84 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,55 @@ configure* @erlend-aasland @corona10
2121
**/*context* @1st1
2222
**/*genobject* @markshannon
2323
**/*hamt* @1st1
24+
**/*jit* @brandtbucher
2425
Objects/set* @rhettinger
2526
Objects/dict* @methane @markshannon
2627
Objects/typevarobject.c @JelleZijlstra
2728
Objects/type* @markshannon
2829
Objects/codeobject.c @markshannon
2930
Objects/frameobject.c @markshannon
3031
Objects/call.c @markshannon
31-
Python/ceval.c @markshannon
32+
Python/ceval*.c @markshannon @gvanrossum
33+
Python/ceval*.h @markshannon @gvanrossum
3234
Python/compile.c @markshannon @iritkatriel
3335
Python/assemble.c @markshannon @iritkatriel
3436
Python/flowgraph.c @markshannon @iritkatriel
3537
Python/ast_opt.c @isidentical
38+
Python/bytecodes.c @markshannon @gvanrossum
39+
Python/optimizer*.c @markshannon @gvanrossum
40+
Python/optimizer_analysis.c @Fidget-Spinner
41+
Python/optimizer_bytecodes.c @Fidget-Spinner
3642
Lib/test/test_patma.py @brandtbucher
37-
Lib/test/test_peepholer.py @brandtbucher
3843
Lib/test/test_type_*.py @JelleZijlstra
44+
Lib/test/test_capi/test_misc.py @markshannon @gvanrossum
45+
Tools/c-analyzer/ @ericsnowcurrently
46+
47+
# dbm
48+
**/*dbm* @corona10 @erlend-aasland @serhiy-storchaka
49+
50+
# runtime state/lifecycle
51+
**/*pylifecycle* @ericsnowcurrently
52+
**/*pystate* @ericsnowcurrently
53+
**/*preconfig* @ericsnowcurrently
54+
**/*initconfig* @ericsnowcurrently
55+
**/*pathconfig* @ericsnowcurrently
56+
**/*sysmodule* @ericsnowcurrently
57+
**/*bltinmodule* @ericsnowcurrently
58+
**/*gil* @ericsnowcurrently
59+
Include/internal/pycore_runtime.h @ericsnowcurrently
60+
Include/internal/pycore_interp.h @ericsnowcurrently
61+
Include/internal/pycore_tstate.h @ericsnowcurrently
62+
Include/internal/pycore_*_state.h @ericsnowcurrently
63+
Include/internal/pycore_*_init.h @ericsnowcurrently
64+
Include/internal/pycore_atexit.h @ericsnowcurrently
65+
Include/internal/pycore_freelist.h @ericsnowcurrently
66+
Include/internal/pycore_global_objects.h @ericsnowcurrently
67+
Include/internal/pycore_obmalloc.h @ericsnowcurrently
68+
Include/internal/pycore_pymem.h @ericsnowcurrently
69+
Modules/main.c @ericsnowcurrently
70+
Programs/_bootstrap_python.c @ericsnowcurrently
71+
Programs/python.c @ericsnowcurrently
72+
Tools/build/generate_global_objects.py @ericsnowcurrently
3973

4074
# Exceptions
4175
Lib/traceback.py @iritkatriel
@@ -45,13 +79,13 @@ Objects/exceptions.c @iritkatriel
4579
Python/traceback.c @iritkatriel
4680

4781
# Hashing
48-
**/*hashlib* @tiran
49-
**/*pyhash* @tiran
50-
**/*sha* @tiran
51-
**/*md5* @tiran
52-
**/*blake* @tiran
53-
/Modules/_blake2/** @tiran
54-
/Modules/_sha3/** @tiran
82+
**/*hashlib* @gpshead @tiran
83+
**/*pyhash* @gpshead @tiran
84+
**/sha* @gpshead @tiran
85+
Modules/md5* @gpshead @tiran
86+
**/*blake* @gpshead @tiran
87+
Modules/_blake2/** @gpshead @tiran
88+
Modules/_hacl/** @gpshead
5589

5690
# logging
5791
**/*logging* @vsajip
@@ -71,7 +105,20 @@ Python/traceback.c @iritkatriel
71105
# Import (including importlib).
72106
**/*import* @brettcannon @ericsnowcurrently @ncoghlan @warsaw
73107
/Python/import.c @kumaraditya303
74-
**/*importlib/resources/* @jaraco @warsaw @FFY00
108+
Python/dynload_*.c @ericsnowcurrently
109+
**/*freeze* @ericsnowcurrently
110+
**/*frozen* @ericsnowcurrently
111+
**/*modsupport* @ericsnowcurrently
112+
**/*modulefinder* @ericsnowcurrently
113+
**/*moduleobject* @ericsnowcurrently
114+
**/*multiphase* @ericsnowcurrently
115+
**/*pkgutil* @ericsnowcurrently
116+
**/*pythonrun* @ericsnowcurrently
117+
**/*runpy* @ericsnowcurrently
118+
**/*singlephase* @ericsnowcurrently
119+
Lib/test/test_module/ @ericsnowcurrently
120+
Doc/c-api/module.rst @ericsnowcurrently
121+
**/*importlib/resources/* @jaraco @warsaw @FFY00
75122
**/importlib/metadata/* @jaraco @warsaw
76123

77124
# Dates and times
@@ -102,6 +149,9 @@ Include/internal/pycore_time.h @pganssle @abalkin
102149
/Lib/tokenize.py @pablogsal @lysnikolaou
103150
/Lib/test/test_tokenize.py @pablogsal @lysnikolaou
104151

152+
# Code generator
153+
/Tools/cases_generator/ @gvanrossum
154+
105155
# AST
106156
Python/ast.c @isidentical
107157
Parser/asdl.py @isidentical
@@ -112,6 +162,9 @@ Lib/ast.py @isidentical
112162
/Lib/unittest/mock.py @cjw296
113163
/Lib/test/test_unittest/testmock/* @cjw296
114164

165+
# multiprocessing
166+
**/*multiprocessing* @gpshead
167+
115168
# SQLite 3
116169
**/*sqlite* @berkerpeksag @erlend-aasland
117170

@@ -149,9 +202,11 @@ Doc/c-api/stable.rst @encukou
149202

150203
**/*dataclasses* @ericvsmith
151204

205+
**/*ensurepip* @pfmoore @pradyunsg
206+
152207
**/*idlelib* @terryjreedy
153208

154-
**/*typing* @gvanrossum @Fidget-Spinner @JelleZijlstra @AlexWaygood
209+
**/*typing* @JelleZijlstra @AlexWaygood
155210

156211
**/*ftplib @giampaolo
157212
**/*shutil @giampaolo
@@ -177,9 +232,25 @@ Doc/c-api/stable.rst @encukou
177232
**/*zipfile/_path/* @jaraco
178233

179234
# Argument Clinic
180-
/Tools/clinic/** @erlend-aasland @AlexWaygood
181-
/Lib/test/test_clinic.py @erlend-aasland @AlexWaygood
235+
/Tools/clinic/** @erlend-aasland
236+
/Lib/test/test_clinic.py @erlend-aasland
182237
Doc/howto/clinic.rst @erlend-aasland
183238

239+
# Subinterpreters
240+
**/*interpreteridobject.* @ericsnowcurrently
241+
**/*crossinterp* @ericsnowcurrently
242+
Lib/test/support/interpreters/ @ericsnowcurrently
243+
Modules/_xx*interp*module.c @ericsnowcurrently
244+
Lib/test/test_interpreters/ @ericsnowcurrently
245+
184246
# WebAssembly
185247
/Tools/wasm/ @brettcannon
248+
249+
# SBOM
250+
/Misc/externals.spdx.json @sethmlarson
251+
/Misc/sbom.spdx.json @sethmlarson
252+
/Tools/build/generate_sbom.py @sethmlarson
253+
254+
# Config Parser
255+
Lib/configparser.py @jaraco
256+
Lib/test/test_configparser.py @jaraco

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ body:
3939
- "3.10"
4040
- "3.11"
4141
- "3.12"
42+
- "3.13"
4243
- "CPython main branch"
4344
validations:
4445
required: true

.github/workflows/add-issue-header.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
permissions:
2020
issues: write
2121
steps:
22-
- uses: actions/github-script@v6
22+
- uses: actions/github-script@v7
2323
with:
2424
# language=JavaScript
2525
script: |

0 commit comments

Comments
 (0)