Skip to content

Commit 16feb31

Browse files
Merge branch 'main' into pep-788-revision
2 parents f02e906 + 2a60d2d commit 16feb31

24 files changed

+1637
-208
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ peps/pep-0675.rst @jellezijlstra
559559
peps/pep-0676.rst @AA-Turner @Mariatta
560560
peps/pep-0677.rst @gvanrossum
561561
peps/pep-0678.rst @iritkatriel
562-
peps/pep-0679.rst @pablogsal
562+
peps/pep-0679.rst @pablogsal @StanFromIreland
563563
peps/pep-0680.rst @encukou
564564
peps/pep-0681.rst @jellezijlstra
565565
peps/pep-0682.rst
@@ -652,7 +652,7 @@ peps/pep-0771.rst @pradyunsg
652652
peps/pep-0772.rst @warsaw @pradyunsg
653653
peps/pep-0773.rst @zooba
654654
peps/pep-0774.rst @savannahostrowski
655-
peps/pep-0775.rst @encukou
655+
peps/pep-0775.rst @encukou @StanFromIreland
656656
peps/pep-0776.rst @hoodmane @ambv
657657
peps/pep-0777.rst @warsaw @emmatyping
658658
peps/pep-0778.rst @warsaw @emmatyping
@@ -663,7 +663,7 @@ peps/pep-0782.rst @vstinner
663663
peps/pep-0783.rst @hoodmane @ambv
664664
peps/pep-0784.rst @gpshead @emmatyping
665665
peps/pep-0785.rst @gpshead
666-
# ...
666+
peps/pep-0786.rst @ncoghlan
667667
peps/pep-0787.rst @ncoghlan
668668
peps/pep-0788.rst @ZeroIntensity @vstinner
669669
peps/pep-0789.rst @njsmith
@@ -702,6 +702,7 @@ peps/pep-0825.rst @warsaw @dstufft
702702
peps/pep-0826.rst @savannahostrowski
703703
peps/pep-0827.rst @1st1
704704
peps/pep-0828.rst @ZeroIntensity
705+
peps/pep-0829.rst @warsaw
705706
# ...
706707
peps/pep-2026.rst @hugovk
707708
# ...

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
persist-credentials: false
2424

2525
- name: Run pre-commit hooks
26-
uses: j178/prek-action@v1
26+
uses: j178/prek-action@v2
2727

2828
- name: Check spelling
29-
uses: j178/prek-action@v1
29+
uses: j178/prek-action@v2
3030
continue-on-error: true
3131
with:
3232
extra_args: --all-files --hook-stage manual codespell

peps/api/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,4 +212,4 @@ release-schedule.ics
212212
--------------------
213213

214214
An iCalendar file of Python release dates is available at
215-
https://peps.python.org/api/release-schedule.ics.
215+
https://peps.python.org/release-schedule.ics.

peps/conf.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -69,17 +69,17 @@
6969

7070
# Intersphinx configuration (keep this in alphabetical order)
7171
intersphinx_mapping = {
72-
"devguide": ("https://devguide.python.org/", None),
73-
"mypy": ("https://mypy.readthedocs.io/en/latest/", None),
74-
"packaging": ("https://packaging.python.org/en/latest/", None),
75-
"py3.11": ("https://docs.python.org/3.11/", None),
76-
"py3.12": ("https://docs.python.org/3.12/", None),
77-
"py3.13": ("https://docs.python.org/3.13/", None),
78-
"py3.14": ("https://docs.python.org/3.14/", None),
79-
"py3.15": ("https://docs.python.org/3.15/", None),
80-
"python": ("https://docs.python.org/3/", None),
81-
"trio": ("https://trio.readthedocs.io/en/latest/", None),
82-
"typing": ("https://typing.python.org/en/latest/", None),
72+
"devguide": ("https://devguide.python.org", None),
73+
"mypy": ("https://mypy.readthedocs.io/en/latest", None),
74+
"packaging": ("https://packaging.python.org/en/latest", None),
75+
"py3.11": ("https://docs.python.org/3.11", None),
76+
"py3.12": ("https://docs.python.org/3.12", None),
77+
"py3.13": ("https://docs.python.org/3.13", None),
78+
"py3.14": ("https://docs.python.org/3.14", None),
79+
"py3.15": ("https://docs.python.org/3.15", None),
80+
"python": ("https://docs.python.org/3", None),
81+
"trio": ("https://trio.readthedocs.io/en/latest", None),
82+
"typing": ("https://typing.python.org/en/latest", None),
8383
}
8484
intersphinx_disabled_reftypes = []
8585

peps/pep-0011.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ aarch64-pc-windows-msvc Steve Dower
130130
arm64-apple-ios iOS on device Russell Keith-Magee, Ned Deily
131131
arm64-apple-ios-simulator iOS on M1 macOS simulator Russell Keith-Magee, Ned Deily
132132
armv7l-unknown-linux-gnueabihf 32-bit Raspberry Pi OS, gcc Gregory P. Smith
133-
aarch64-unknown-linux-gnu 64-bit Raspberry Pi OS, gcc Savannah Ostrowski
133+
aarch64-unknown-linux-gnu 64-bit Raspberry Pi OS, gcc Savannah Ostrowski, Stan Ulbrych
134134
powerpc64le-unknown-linux-gnu glibc, clang Victor Stinner
135135

136136
glibc, gcc Victor Stinner

peps/pep-0501.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,6 +1327,7 @@ primarily based on the anticipated needs of this hypothetical integration into
13271327
the logging module:
13281328

13291329
.. code-block:: python
1330+
:force:
13301331
13311332
logging.debug(t"Eager evaluation of {expensive_call()}")
13321333
logging.debug(t"Lazy evaluation of {expensive_call!()}")

peps/pep-0516.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -451,12 +451,6 @@ References
451451
.. [#flit] flit, a simple way to put packages in PyPI
452452
(http://flit.readthedocs.org/en/latest/)
453453
454-
.. [#pypi] PyPI, the Python Package Index
455-
(https://pypi.python.org/)
456-
457-
.. [#shellvars] Shellvars, an implementation of shell variable rules for Python.
458-
(https://github.com/testing-cabal/shellvars)
459-
460454
.. [#thread] The kick-off thread.
461455
(https://mail.python.org/pipermail/distutils-sig/2015-October/026925.html)
462456

peps/pep-0593.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PEP: 593
22
Title: Flexible function and variable annotations
3-
Author: Till Varoquaux <till@fb.com>, Konstantin Kashin <kkashin@fb.com>
3+
Author: Till Varoquaux <till.varoquaux@gmail.com>, Konstantin Kashin <kkashin@fb.com>
44
Sponsor: Ivan Levkivskyi <levkivskyi@gmail.com>
55
Discussions-To: typing-sig@python.org
66
Status: Final

peps/pep-0679.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PEP: 679
22
Title: New assert statement syntax with parentheses
33
Author: Pablo Galindo Salgado <pablogsal@python.org>,
4-
Stan Ulbrych <stanulbrych@gmail.com>,
4+
Stan Ulbrych <stan@python.org>,
55
Discussions-To: https://discuss.python.org/t/pep-679-new-assert-statement-syntax-with-parentheses/103634
66
Status: Rejected
77
Type: Standards Track

peps/pep-0719.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ Actual:
7676
- 3.13.10: Tuesday, 2025-12-02
7777
- 3.13.11: Friday, 2025-12-05
7878
- 3.13.12: Tuesday, 2026-02-03
79+
- 3.13.13: Tuesday, 2026-04-07
7980

8081
Expected:
8182

82-
- 3.13.13: Tuesday, 2026-04-07
8383
- 3.13.14: Tuesday, 2026-06-09
8484
- 3.13.15: Tuesday, 2026-08-04
8585
- 3.13.16: Tuesday, 2026-10-06

0 commit comments

Comments
 (0)