Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit393aaad

Browse files
authored
Merge branch 'main' into asyncio-repl-handle-python-startup
2 parents5701fef +bef63d2 commit393aaad

File tree

1,051 files changed

+101879
-22745
lines changed

Some content is hidden

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

1,051 files changed

+101879
-22745
lines changed

‎.gitattributes‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ PCbuild/readme.txt dos
6868
**/clinic/*.cpp.hgenerated
6969
**/clinic/*.h.hgenerated
7070
*_db.hgenerated
71+
Doc/_static/tachyon-example-*.htmlgenerated
7172
Doc/c-api/lifecycle.dot.svggenerated
7273
Doc/data/stable_abi.datgenerated
7374
Doc/library/token-list.incgenerated
@@ -88,6 +89,7 @@ Lib/test/certdata/*.pem generated
8889
Lib/test/certdata/*.0generated
8990
Lib/test/levenshtein_examples.jsongenerated
9091
Lib/test/test_stable_abi_ctypes.pygenerated
92+
Lib/test/test_zoneinfo/data/*.jsongenerated
9193
Lib/token.pygenerated
9294
Misc/sbom.spdx.jsongenerated
9395
Objects/typeslots.incgenerated

‎.github/CODEOWNERS‎

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@ Doc/howto/clinic.rst @erlend-aasland @AA-Turner
126126
# C Analyser
127127
Tools/c-analyzer/@ericsnowcurrently
128128

129+
# C API Documentation Checks
130+
Tools/check-c-api-docs/@ZeroIntensity
131+
129132
# Fuzzing
130133
Modules/_xxtestfuzz/@ammaraskar
131134

@@ -286,10 +289,10 @@ Tools/jit/ @brandtbucher @savannahostrowski @diegorusso
286289
InternalDocs/jit.md@brandtbucher@savannahostrowski@diegorusso@AA-Turner
287290

288291
# Micro-op / μop / Tier 2 Optimiser
289-
Python/optimizer.c@markshannon
292+
Python/optimizer.c@markshannon@Fidget-Spinner
290293
Python/optimizer_analysis.c@markshannon@tomasr8@Fidget-Spinner
291294
Python/optimizer_bytecodes.c@markshannon@tomasr8@Fidget-Spinner
292-
Python/optimizer_symbols.c@markshannon@tomasr8
295+
Python/optimizer_symbols.c@markshannon@tomasr8@Fidget-Spinner
293296

294297
# Parser, Lexer, and Grammar
295298
Grammar/python.gram@pablogsal@lysnikolaou
@@ -319,7 +322,7 @@ Tools/build/generate_global_objects.py @ericsnowcurrently
319322
# Remote Debugging
320323
Python/remote_debug.h@pablogsal
321324
Python/remote_debugging.c@pablogsal
322-
Modules/_remote_debugging_module.c@pablogsal@ambv@1st1
325+
Modules/_remote_debugging/@pablogsal
323326

324327
# Sub-Interpreters
325328
**/*crossinterp*@ericsnowcurrently
@@ -534,6 +537,11 @@ Lib/pydoc.py @AA-Turner
534537
Lib/pydoc_data/@AA-Turner
535538
Lib/test/test_pydoc/@AA-Turner
536539

540+
# Profiling (Sampling)
541+
Doc/library/profiling*.rst@pablogsal
542+
Lib/profiling/@pablogsal
543+
Lib/test/test_profiling/@pablogsal
544+
537545
# PyREPL
538546
Lib/_pyrepl/@pablogsal@lysnikolaou@ambv
539547
Lib/test/test_pyrepl/@pablogsal@lysnikolaou@ambv

‎.github/CONTRIBUTING.rst‎

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,12 @@ Please be aware that our workflow does deviate slightly from the typical GitHub
2828
project. Details on how to properly submit a pull request are covered in
2929
`Lifecycle of a Pull Request<https://devguide.python.org/getting-started/pull-request-lifecycle.html>`_.
3030
We utilize various bots and status checks to help with this, so do follow the
31-
comments they leave and their "Details" links, respectively. The key points of
32-
our workflow that are not covered by a bot or status check are:
31+
comments they leave and their "Details" links, respectively.
3332

34-
- All discussions that are not directly related to the code in the pull request
35-
should happen on `GitHub Issues<https://github.com/python/cpython/issues>`_.
36-
- Upon your first non-trivial pull request (which includes documentation changes),
37-
feel free to add yourself to ``Misc/ACKS``.
33+
The final key part of our workflow is that all discussions that are not
34+
directly related to the code in the pull request should happen on
35+
`GitHub Issues<https://github.com/python/cpython/issues>`__, generally in the
36+
pull request's parent issue.
3837

3938

4039
Setting Expectations

‎.github/ISSUE_TEMPLATE/config.yml‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ contact_links:
55
-name:"Proposing new features"
66
about:"Submit major feature proposal (e.g. syntax changes) to an ideas forum first."
77
url:"https://discuss.python.org/c/ideas/6"
8+
-name:"Python Install Manager issues"
9+
about:"Report issues with the Python Install Manager (for Windows)"
10+
url:"https://github.com/python/pymanager/issues"

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

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp