Skip to content

Commit d2d90b4

Browse files
authored
Merge branch 'main' into lazy-imports-filter-clarify-signature-positional
2 parents ec8e313 + 222a8bf commit d2d90b4

3,008 files changed

Lines changed: 230850 additions & 127887 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/windows-layout-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ steps:
1212
displayName: Show layout info (${{ parameters.kind }})
1313

1414
- ${{ if eq(parameters.fulltest, 'true') }}:
15-
- script: .\python.exe -m test -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0 --junit-xml="$(Build.BinariesDirectory)\test-results-${{ parameters.kind }}.xml" --tempdir "$(Build.BinariesDirectory)\tmp-${{ parameters.kind }}-$(arch)" -i test_launcher
15+
- script: .\python.exe -m test -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0 --junit-xml="$(Build.BinariesDirectory)\test-results-${{ parameters.kind }}.xml" --tempdir "$(Build.BinariesDirectory)\tmp-${{ parameters.kind }}-$(arch)"
1616
workingDirectory: $(Build.BinariesDirectory)\layout-${{ parameters.kind }}-$(arch)
1717
displayName: ${{ parameters.kind }} Tests
1818
env:

.editorconfig

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

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

8-
[*.{py,c,cpp,h,gram}]
8+
[*.{py,c,cpp,h,toml,gram}]
99
indent_size = 4
1010

1111
[*.rst]

.gitattributes

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*.zip binary
2020

2121
# Specific binary files
22-
PC/classicAppCompat.* binary
22+
# -- None right now --
2323

2424
# Text files that should not be subject to eol conversion
2525
[attr]noeol -text
@@ -34,6 +34,9 @@ Lib/test/xmltestdata/* noeol
3434
Lib/venv/scripts/common/activate text eol=lf
3535
Lib/venv/scripts/posix/* text eol=lf
3636

37+
# Prevent GitHub's web conflict editor from converting LF to CRLF
38+
*.rst text eol=lf
39+
3740
# CRLF files
3841
[attr]dos text eol=crlf
3942

@@ -81,6 +84,7 @@ Include/internal/pycore_uop_ids.h generated
8184
Include/internal/pycore_uop_metadata.h generated
8285
Include/opcode.h generated
8386
Include/opcode_ids.h generated
87+
Include/slots_generated.h generated
8488
Include/token.h generated
8589
Lib/_opcode_metadata.py generated
8690
Lib/idlelib/help.html generated
@@ -96,7 +100,6 @@ Lib/token.py generated
96100
Misc/sbom.spdx.json generated
97101
Modules/_testinternalcapi/test_cases.c.h generated
98102
Modules/_testinternalcapi/test_targets.h generated
99-
Objects/typeslots.inc generated
100103
PC/python3dll.c generated
101104
Parser/parser.c generated
102105
Parser/token.c generated
@@ -107,8 +110,10 @@ Python/generated_cases.c.h generated
107110
Python/optimizer_cases.c.h generated
108111
Python/opcode_targets.h generated
109112
Python/record_functions.c.h generated
113+
Python/slots_generated.c generated
110114
Python/stdlib_module_names.h generated
111115
Tools/peg_generator/pegen/grammar_parser.py generated
112116
aclocal.m4 generated
113117
configure generated
114118
*.min.js generated
119+
package-lock.json generated

.github/CODEOWNERS

Lines changed: 76 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -63,28 +63,29 @@
6363
.azure-pipelines/ @AA-Turner
6464

6565
# GitHub & related scripts
66-
.github/ @ezio-melotti @hugovk @AA-Turner @webknjaz
67-
Tools/build/compute-changes.py @AA-Turner @hugovk @webknjaz
68-
Tools/build/verify_ensurepip_wheels.py @AA-Turner @pfmoore @pradyunsg
66+
.github/ @ezio-melotti @hugovk @AA-Turner @webknjaz @itamaro @JacobCoffee
67+
Tools/build/compute-changes.py @AA-Turner @hugovk @webknjaz
68+
Lib/test/test_tools/test_compute_changes.py @AA-Turner @hugovk @webknjaz
69+
Tools/build/verify_ensurepip_wheels.py @AA-Turner @pfmoore @pradyunsg
6970

7071
# Pre-commit
71-
.pre-commit-config.yaml @hugovk
72-
.ruff.toml @hugovk @AlexWaygood @AA-Turner
72+
.pre-commit-config.yaml @hugovk @JacobCoffee
73+
.ruff.toml @hugovk @AlexWaygood @AA-Turner @JacobCoffee
7374

7475
# Patchcheck
75-
Tools/patchcheck/ @AA-Turner
76+
Tools/patchcheck/ @AA-Turner @itamaro
7677

7778

7879
# ----------------------------------------------------------------------------
7980
# Build System
8081
# ----------------------------------------------------------------------------
8182

8283
# Autotools
83-
configure* @erlend-aasland @corona10 @AA-Turner @emmatyping
84-
Makefile.pre.in @erlend-aasland @AA-Turner @emmatyping
85-
Modules/makesetup @erlend-aasland @AA-Turner @emmatyping
86-
Modules/Setup* @erlend-aasland @AA-Turner @emmatyping
87-
Tools/build/regen-configure.sh @AA-Turner
84+
configure* @erlend-aasland @corona10 @AA-Turner @emmatyping @itamaro
85+
Makefile.pre.in @erlend-aasland @AA-Turner @emmatyping @itamaro
86+
Modules/makesetup @erlend-aasland @AA-Turner @emmatyping @itamaro
87+
Modules/Setup* @erlend-aasland @AA-Turner @emmatyping @itamaro
88+
Tools/build/regen-configure.sh @AA-Turner @itamaro
8889

8990
# generate-build-details
9091
Tools/build/generate-build-details.py @FFY00
@@ -99,17 +100,18 @@ Lib/test/test_build_details.py @FFY00
99100
InternalDocs/ @AA-Turner
100101

101102
# Tools, Configuration, etc
102-
Doc/Makefile @AA-Turner @hugovk
103-
Doc/_static/ @AA-Turner @hugovk
104-
Doc/conf.py @AA-Turner @hugovk
105-
Doc/make.bat @AA-Turner @hugovk
106-
Doc/requirements.txt @AA-Turner @hugovk
107-
Doc/tools/ @AA-Turner @hugovk
103+
Doc/Makefile @AA-Turner @hugovk @StanFromIreland
104+
Doc/_static/ @AA-Turner @hugovk @StanFromIreland
105+
Doc/conf.py @AA-Turner @hugovk @StanFromIreland
106+
Doc/make.bat @AA-Turner @hugovk @StanFromIreland
107+
Doc/requirements.txt @AA-Turner @hugovk @StanFromIreland
108+
Doc/tools/ @AA-Turner @hugovk @StanFromIreland
108109

109110
# PR Previews
110111
.readthedocs.yml @AA-Turner
111112

112113
# Sections
114+
Doc/c-api/ @ZeroIntensity
113115
Doc/reference/ @willingc @AA-Turner
114116
Doc/whatsnew/ @AA-Turner
115117

@@ -130,7 +132,9 @@ Tools/c-analyzer/ @ericsnowcurrently
130132
Tools/check-c-api-docs/ @ZeroIntensity
131133

132134
# Fuzzing
133-
Modules/_xxtestfuzz/ @ammaraskar
135+
Modules/_xxtestfuzz/ @python/fuzzers
136+
Lib/test/test_xxtestfuzz.py @python/fuzzers
137+
.github/workflows/reusable-cifuzz.yml @python/fuzzers
134138

135139
# Limited C API & Stable ABI
136140
Doc/c-api/stable.rst @encukou
@@ -152,16 +156,15 @@ Misc/libabigail.abignore @encukou
152156
# ----------------------------------------------------------------------------
153157

154158
# Android
155-
Android/ @mhsmith @freakboy3742
159+
Platforms/Android/ @mhsmith @freakboy3742
156160
Doc/using/android.rst @mhsmith @freakboy3742
157161
Lib/_android_support.py @mhsmith @freakboy3742
158162
Lib/test/test_android.py @mhsmith @freakboy3742
159163

160164
# iOS
161165
Doc/using/ios.rst @freakboy3742
162166
Lib/_ios_support.py @freakboy3742
163-
Apple/ @freakboy3742
164-
iOS/ @freakboy3742
167+
Platforms/Apple/ @freakboy3742
165168

166169
# macOS
167170
Mac/ @python/macos-team
@@ -172,8 +175,8 @@ Lib/test/test__osx_support.py @python/macos-team
172175
Tools/wasm/README.md @brettcannon @freakboy3742 @emmatyping
173176

174177
# WebAssembly (Emscripten)
175-
Tools/wasm/config.site-wasm32-emscripten @freakboy3742 @emmatyping
176-
Tools/wasm/emscripten @freakboy3742 @emmatyping
178+
Platforms/emscripten @freakboy3742 @emmatyping
179+
Tools/wasm/emscripten @freakboy3742 @emmatyping
177180

178181
# WebAssembly (WASI)
179182
Platforms/WASI @brettcannon @emmatyping @savannahostrowski
@@ -185,12 +188,8 @@ Tools/wasm/wasi @brettcannon @emmatyping @savannahostrowski
185188
PC/ @python/windows-team
186189
PCbuild/ @python/windows-team
187190

188-
# Windows installer packages
189-
Tools/msi/ @python/windows-team
190-
Tools/nuget/ @python/windows-team
191-
192-
# Windows Launcher
193-
PC/launcher.c @python/windows-team @vsajip
191+
# Windows Venv launcher/redirector
192+
PC/venvlauncher.c @python/windows-team @vsajip
194193

195194

196195
# ----------------------------------------------------------------------------
@@ -258,40 +257,46 @@ Include/pyhash.h @gpshead @picnixz
258257
Python/pyhash.c @gpshead @picnixz
259258

260259
# The import system (including importlib)
261-
**/*import* @brettcannon @ericsnowcurrently @ncoghlan @warsaw
262-
Python/import.c @brettcannon @ericsnowcurrently @ncoghlan @warsaw @kumaraditya303
260+
**/*import* @brettcannon @ericsnowcurrently @ncoghlan @warsaw @FFY00
261+
Python/import.c @brettcannon @ericsnowcurrently @ncoghlan @warsaw @FFY00 @kumaraditya303
263262
**/*freeze* @ericsnowcurrently
264263
**/*frozen* @ericsnowcurrently
265264
**/*modsupport* @ericsnowcurrently
266-
**/*modulefinder* @ericsnowcurrently
265+
**/*modulefinder* @ericsnowcurrently @FFY00
267266
**/*moduleobject* @ericsnowcurrently
268267
**/*multiphase* @ericsnowcurrently
269-
**/*pkgutil* @ericsnowcurrently
268+
**/*pkgutil* @ericsnowcurrently @FFY00
270269
**/*pythonrun* @ericsnowcurrently
271-
**/*runpy* @ericsnowcurrently
270+
**/*runpy* @ericsnowcurrently @FFY00
272271
**/*singlephase* @ericsnowcurrently
273272
Doc/c-api/module.rst @ericsnowcurrently
274273
Lib/test/test_module/ @ericsnowcurrently
275-
Python/dynload_*.c @ericsnowcurrently
274+
Python/dynload_*.c @ericsnowcurrently @FFY00
276275

277276
# Initialisation
278-
**/*initconfig* @ericsnowcurrently
279-
**/*pathconfig* @ericsnowcurrently
280-
**/*preconfig* @ericsnowcurrently
277+
**/*initconfig* @ericsnowcurrently @FFY00
278+
**/*pathconfig* @ericsnowcurrently @FFY00
279+
**/*preconfig* @ericsnowcurrently @FFY00
281280
Doc/library/sys_path_init.rst @FFY00
282281
Doc/c-api/init_config.rst @FFY00
283282

284283
# Interpreter main program
285-
Modules/main.c @ericsnowcurrently
286-
Programs/_bootstrap_python.c @ericsnowcurrently
287-
Programs/python.c @ericsnowcurrently
284+
Modules/main.c @ericsnowcurrently @FFY00
285+
Programs/_bootstrap_python.c @ericsnowcurrently @FFY00
286+
Programs/python.c @ericsnowcurrently @FFY00
288287

289288
# JIT
289+
.github/workflows/jit.yml @savannahostrowski
290290
Include/internal/pycore_jit.h @brandtbucher @savannahostrowski @diegorusso
291291
Python/jit.c @brandtbucher @savannahostrowski @diegorusso
292292
Tools/jit/ @brandtbucher @savannahostrowski @diegorusso
293293
InternalDocs/jit.md @brandtbucher @savannahostrowski @diegorusso @AA-Turner
294294

295+
# Lazy imports (PEP 810)
296+
Objects/lazyimportobject.c @yhg1s @DinoV @pablogsal
297+
Include/internal/pycore_lazyimportobject.h @yhg1s @DinoV @pablogsal
298+
Lib/test/test_lazy_import @yhg1s @DinoV @pablogsal
299+
295300
# Micro-op / μop / Tier 2 Optimiser
296301
Python/optimizer.c @markshannon @Fidget-Spinner
297302
Python/optimizer_analysis.c @markshannon @tomasr8 @Fidget-Spinner @savannahostrowski
@@ -308,8 +313,8 @@ Tools/peg_generator/ @pablogsal @lysnikolaou
308313

309314
# Runtime state/lifecycle
310315
**/*gil* @ericsnowcurrently
311-
**/*pylifecycle* @ericsnowcurrently @ZeroIntensity
312-
**/*pystate* @ericsnowcurrently @ZeroIntensity
316+
**/*pylifecycle* @ericsnowcurrently @ZeroIntensity @FFY00
317+
**/*pystate* @ericsnowcurrently @ZeroIntensity @FFY00
313318
Include/internal/pycore_*_init.h @ericsnowcurrently
314319
Include/internal/pycore_*_state.h @ericsnowcurrently
315320
Include/internal/pycore_atexit.h @ericsnowcurrently
@@ -417,18 +422,19 @@ Lib/dataclasses.py @ericvsmith
417422
Lib/test/test_dataclasses/ @ericvsmith
418423

419424
# Dates and times
420-
Doc/**/*time.rst @pganssle @abalkin
421-
Doc/library/zoneinfo.rst @pganssle
422-
Include/datetime.h @pganssle @abalkin
423-
Include/internal/pycore_time.h @pganssle @abalkin
424-
Lib/test/test_zoneinfo/ @pganssle
425-
Lib/zoneinfo/ @pganssle
426-
Lib/*time.py @pganssle @abalkin
427-
Lib/test/datetimetester.py @pganssle @abalkin
428-
Lib/test/test_*time.py @pganssle @abalkin
429-
Modules/*zoneinfo* @pganssle
430-
Modules/*time* @pganssle @abalkin
431-
Python/pytime.c @pganssle @abalkin
425+
Doc/**/*time.rst @pganssle @StanFromIreland
426+
Doc/library/datetime-* @pganssle @StanFromIreland
427+
Doc/library/zoneinfo.rst @pganssle @StanFromIreland
428+
Include/datetime.h @pganssle @StanFromIreland
429+
Include/internal/pycore_time.h @pganssle @StanFromIreland
430+
Lib/test/test_zoneinfo/ @pganssle @StanFromIreland
431+
Lib/zoneinfo/ @pganssle @StanFromIreland
432+
Lib/*time.py @pganssle @StanFromIreland
433+
Lib/test/datetimetester.py @pganssle @StanFromIreland
434+
Lib/test/test_*time.py @pganssle @StanFromIreland
435+
Modules/*zoneinfo* @pganssle @StanFromIreland
436+
Modules/*time* @pganssle @StanFromIreland
437+
Python/pytime.c @pganssle @StanFromIreland
432438

433439
# Dbm
434440
Doc/library/dbm.rst @corona10 @erlend-aasland @serhiy-storchaka
@@ -467,8 +473,9 @@ Lib/test/test_functools.py @rhettinger
467473
Modules/_functoolsmodule.c @rhettinger
468474

469475
# Garbage collector
470-
Modules/gcmodule.c @pablogsal
471-
Doc/library/gc.rst @pablogsal
476+
Modules/gcmodule.c @pablogsal
477+
Doc/library/gc.rst @pablogsal
478+
InternalDocs/garbage_collector.md @pablogsal
472479

473480
# Gettext
474481
Doc/library/gettext.rst @tomasr8
@@ -495,13 +502,13 @@ Lib/idlelib/ @terryjreedy
495502
Lib/turtledemo/ @terryjreedy
496503

497504
# importlib.metadata
498-
Doc/library/importlib.metadata.rst @jaraco @warsaw
499-
Lib/importlib/metadata/ @jaraco @warsaw
500-
Lib/test/test_importlib/metadata/ @jaraco @warsaw
505+
Doc/library/importlib.metadata.rst @jaraco @warsaw @FFY00
506+
Lib/importlib/metadata/ @jaraco @warsaw @FFY00
507+
Lib/test/test_importlib/metadata/ @jaraco @warsaw @FFY00
501508

502509
# importlib.resources
503-
Doc/library/importlib.resources.abc.rst @jaraco @warsaw
504-
Doc/library/importlib.resources.rst @jaraco @warsaw
510+
Doc/library/importlib.resources.abc.rst @jaraco @warsaw @FFY00
511+
Doc/library/importlib.resources.rst @jaraco @warsaw @FFY00
505512
Lib/importlib/resources/ @jaraco @warsaw @FFY00
506513
Lib/test/test_importlib/resources/ @jaraco @warsaw @FFY00
507514

@@ -562,9 +569,9 @@ Lib/shutil.py @giampaolo
562569
Lib/test/test_shutil.py @giampaolo
563570

564571
# Site
565-
Lib/site.py @FFY00
566-
Lib/test/test_site.py @FFY00
567-
Doc/library/site.rst @FFY00
572+
Lib/site.py @FFY00 @warsaw
573+
Lib/test/test_site.py @FFY00 @warsaw
574+
Doc/library/site.rst @FFY00 @warsaw
568575

569576
# string.templatelib
570577
Doc/library/string.templatelib.rst @lysnikolaou @AA-Turner
@@ -575,10 +582,10 @@ Lib/test/test_string/test_templatelib.py @lysnikolaou @AA-Turner
575582
**/*sysconfig* @FFY00
576583

577584
# SQLite 3
578-
Doc/library/sqlite3.rst @berkerpeksag @erlend-aasland
579-
Lib/sqlite3/ @berkerpeksag @erlend-aasland
580-
Lib/test/test_sqlite3/ @berkerpeksag @erlend-aasland
581-
Modules/_sqlite/ @berkerpeksag @erlend-aasland
585+
Doc/library/sqlite3.rst @erlend-aasland
586+
Lib/sqlite3/ @erlend-aasland
587+
Lib/test/test_sqlite3/ @erlend-aasland
588+
Modules/_sqlite/ @erlend-aasland
582589

583590
# Subprocess
584591
Lib/subprocess.py @gpshead
@@ -611,9 +618,6 @@ Modules/_typesmodule.c @AA-Turner
611618
Lib/unittest/mock.py @cjw296
612619
Lib/test/test_unittest/testmock/ @cjw296
613620

614-
# Urllib
615-
**/*robotparser* @berkerpeksag
616-
617621
# Venv
618622
**/*venv* @vsajip @FFY00
619623

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ body:
3434
label: "CPython versions tested on:"
3535
multiple: true
3636
options:
37-
- "3.9"
3837
- "3.10"
3938
- "3.11"
4039
- "3.12"
4140
- "3.13"
4241
- "3.14"
4342
- "3.15"
43+
- "3.16"
4444
- "CPython main branch"
4545
validations:
4646
required: true

.github/ISSUE_TEMPLATE/crash.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ body:
2727
label: "CPython versions tested on:"
2828
multiple: true
2929
options:
30-
- "3.9"
3130
- "3.10"
3231
- "3.11"
3332
- "3.12"
3433
- "3.13"
3534
- "3.14"
3635
- "3.15"
36+
- "3.16"
3737
- "CPython main branch"
3838
validations:
3939
required: true

0 commit comments

Comments
 (0)