Skip to content

Commit 522450e

Browse files
Merge branch '3.13' into backport-46a1f0a-3.13
2 parents 7f07653 + 196edfb commit 522450e

File tree

676 files changed

+32108
-5038
lines changed

Some content is hidden

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

676 files changed

+32108
-5038
lines changed

.gitattributes

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,8 +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/keyword.py generated
8483
Lib/idlelib/help.html generated
84+
Lib/keyword.py generated
85+
Lib/pydoc_data/topics.py generated
86+
Lib/pydoc_data/module_docs.py generated
8587
Lib/test/certdata/*.pem generated
8688
Lib/test/certdata/*.0 generated
8789
Lib/test/levenshtein_examples.json generated

.github/CODEOWNERS

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

77
# GitHub
8-
.github/** @ezio-melotti @hugovk
8+
.github/** @ezio-melotti @hugovk @webknjaz
9+
.github/workflows/jit.yml @savannahostrowski
10+
Tools/build/compute-changes.py @AA-Turner @hugovk @webknjaz
11+
Lib/test/test_tools/test_compute_changes.py @AA-Turner @hugovk @webknjaz
912

1013
# pre-commit
1114
.pre-commit-config.yaml @hugovk
@@ -21,7 +24,7 @@ configure* @erlend-aasland @corona10
2124
**/*context* @1st1
2225
**/*genobject* @markshannon
2326
**/*hamt* @1st1
24-
**/*jit* @brandtbucher
27+
**/*jit* @brandtbucher @savannahostrowski
2528
Python/perf_jit_trampoline.c # Exclude the owners of "**/*jit*", above.
2629
Objects/set* @rhettinger
2730
Objects/dict* @methane @markshannon
@@ -44,6 +47,7 @@ Lib/test/test_patma.py @brandtbucher
4447
Lib/test/test_type_*.py @JelleZijlstra
4548
Lib/test/test_capi/test_misc.py @markshannon
4649
Tools/c-analyzer/ @ericsnowcurrently
50+
Tools/check-c-api-docs/ @ZeroIntensity
4751

4852
# dbm
4953
**/*dbm* @corona10 @erlend-aasland @serhiy-storchaka

.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)