Skip to content

Commit 07deb59

Browse files
Merge branch '3.13' into backport-6831634-3.13
2 parents 586b25e + 48dd852 commit 07deb59

File tree

765 files changed

+69381
-36001
lines changed

Some content is hidden

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

765 files changed

+69381
-36001
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,10 @@ Include/opcode.h generated
8080
Include/opcode_ids.h generated
8181
Include/token.h generated
8282
Lib/_opcode_metadata.py generated
83+
Lib/idlelib/help.html generated
8384
Lib/keyword.py generated
85+
Lib/pydoc_data/topics.py generated
86+
Lib/pydoc_data/module_docs.py generated
8487
Lib/test/certdata/*.pem generated
8588
Lib/test/certdata/*.0 generated
8689
Lib/test/levenshtein_examples.json generated

.github/CODEOWNERS

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# https://git-scm.com/docs/gitignore#_pattern_format
66

77
# GitHub
8-
.github/** @ezio-melotti @hugovk
8+
.github/** @ezio-melotti @hugovk @webknjaz
99

1010
# pre-commit
1111
.pre-commit-config.yaml @hugovk
@@ -22,6 +22,7 @@ configure* @erlend-aasland @corona10
2222
**/*genobject* @markshannon
2323
**/*hamt* @1st1
2424
**/*jit* @brandtbucher
25+
Python/perf_jit_trampoline.c # Exclude the owners of "**/*jit*", above.
2526
Objects/set* @rhettinger
2627
Objects/dict* @methane @markshannon
2728
Objects/typevarobject.c @JelleZijlstra
@@ -43,6 +44,7 @@ Lib/test/test_patma.py @brandtbucher
4344
Lib/test/test_type_*.py @JelleZijlstra
4445
Lib/test/test_capi/test_misc.py @markshannon
4546
Tools/c-analyzer/ @ericsnowcurrently
47+
Tools/check-c-api-docs/ @ZeroIntensity
4648

4749
# dbm
4850
**/*dbm* @corona10 @erlend-aasland @serhiy-storchaka

.github/actionlint.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
self-hosted-runner:
2+
# Pending https://github.com/rhysd/actionlint/issues/533
3+
# and https://github.com/rhysd/actionlint/issues/571
4+
labels: ["windows-11-arm", "macos-15-intel"]
5+
6+
config-variables: null
7+
8+
paths:
9+
.github/workflows/**/*.yml:
10+
ignore:
11+
- 1st argument of function call is not assignable
12+
- SC2(015|038|086|091|097|098|129|155)

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,17 @@ updates:
1212
update-types:
1313
- "version-update:semver-minor"
1414
- "version-update:semver-patch"
15+
cooldown:
16+
# https://blog.yossarian.net/2025/11/21/We-should-all-be-using-dependency-cooldowns
17+
# Cooldowns protect against supply chain attacks by avoiding the
18+
# highest-risk window immediately after new releases.
19+
default-days: 14
1520
- package-ecosystem: "pip"
1621
directory: "/Tools/"
1722
schedule:
1823
interval: "monthly"
1924
labels:
2025
- "skip issue"
2126
- "skip news"
27+
cooldown:
28+
default-days: 14

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
issues: write
2121
timeout-minutes: 5
2222
steps:
23-
- uses: actions/github-script@v7
23+
- uses: actions/github-script@v8
2424
with:
2525
# language=JavaScript
2626
script: |

0 commit comments

Comments
 (0)