Skip to content

Commit 038c02c

Browse files
authored
Merge branch 'main' into pep750-debug-specifier-fix
2 parents ce1b46d + 0465dd1 commit 038c02c

20 files changed

Lines changed: 2715 additions & 826 deletions

.github/CODEOWNERS

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,6 +655,7 @@ peps/pep-0774.rst @savannahostrowski
655655
peps/pep-0775.rst @encukou
656656
peps/pep-0776.rst @hoodmane @ambv
657657
peps/pep-0777.rst @warsaw
658+
peps/pep-0778.rst @warsaw
658659
# ...
659660
peps/pep-0779.rst @Yhg1s @colesbury @mpage
660661
peps/pep-0780.rst @lysnikolaou
@@ -672,7 +673,9 @@ peps/pep-0791.rst @vstinner
672673
peps/pep-0792.rst @dstufft
673674
peps/pep-0793.rst @encukou
674675
peps/pep-0794.rst @brettcannon
675-
# ...
676+
peps/pep-0798.rst @JelleZijlstra
677+
peps/pep-0799.rst @pablogsal
678+
peps/pep-0800.rst @JelleZijlstra
676679
peps/pep-0801.rst @warsaw
677680
# ...
678681
peps/pep-2026.rst @hugovk

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ venv:
6464
echo "venv already exists."; \
6565
echo "To recreate it, remove it first with \`make clean-venv'."; \
6666
else \
67+
set -e; \
6768
echo "Creating venv in $(VENVDIR)"; \
6869
if $(UV) --version >/dev/null 2>&1; then \
6970
$(UV) venv --python=$(PYTHON) $(VENVDIR); \

peps/pep-0011.rst

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Tier 2
102102
Target Triple Notes Contacts
103103
============================= ========================== ========
104104
aarch64-unknown-linux-gnu glibc, clang Victor Stinner, Gregory P. Smith
105-
wasm32-unknown-wasip1 WASI SDK, Wasmtime Brett Cannon, Eric Snow
105+
wasm32-unknown-wasip1 WASI SDK, Wasmtime Brett Cannon, Michael Droettboom
106106
x86_64-unknown-linux-gnu glibc, clang Victor Stinner, Gregory P. Smith
107107
============================= ========================== ========
108108

@@ -128,6 +128,7 @@ powerpc64le-unknown-linux-gnu glibc, clang Victor Stinner
128128

129129
glibc, gcc Victor Stinner
130130
s390x-unknown-linux-gnu glibc, gcc Victor Stinner
131+
wasm32-unknown-emscripten emcc Russell Keith-Magee
131132
x86_64-linux-android Russell Keith-Magee, Petr Viktorin
132133
x86_64-unknown-freebsd BSD libc, clang Victor Stinner
133134
================================ =========================== ========
@@ -367,10 +368,6 @@ No-longer-supported platforms
367368
| Unsupported in: Python 3.7
368369
| Code removed in: Python 3.7
369370
370-
* | Name: wasm32-unknown-emscripten
371-
| Unsupported in: Python 3.13
372-
| Code removed in: Unknown
373-
374371

375372
Discussions
376373
===========

peps/pep-0590.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PEP: 590
22
Title: Vectorcall: a fast calling protocol for CPython
33
Author: Mark Shannon <mark@hotpy.org>, Jeroen Demeyer <J.Demeyer@UGent.be>
44
BDFL-Delegate: Petr Viktorin <encukou@gmail.com>
5-
Status: Accepted
5+
Status: Final
66
Type: Standards Track
77
Created: 29-Mar-2019
88
Python-Version: 3.8

peps/pep-0628.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The idea in this PEP has been implemented in the auspiciously named
3030
`issue 12345`_.
3131

3232
.. _accepted: https://bugs.python.org/issue12345#msg272287
33-
.. _issue 12345: http://bugs.python.org/issue12345
33+
.. _issue 12345: https://bugs.python.org/issue12345
3434

3535

3636
The Rationale for Tau
@@ -65,12 +65,12 @@ may be of interest:
6565
highlighting the problems with ``pi`` has `a page of resources`_ on the
6666
topic
6767
* For those that prefer videos to written text, `Pi is wrong!`_ and
68-
`Pi is (still) wrong`_ are available on YouTube
68+
`Pi is (still) wrong`_ are available.
6969

70-
.. _Tau Manifesto: http://tauday.com/
71-
.. _Pi is (still) wrong: http://www.youtube.com/watch?v=jG7vhMMXagQ
72-
.. _Pi is wrong!: http://www.youtube.com/watch?v=IF1zcRoOVN0
73-
.. _a page of resources: http://www.math.utah.edu/~palais/pi.html
70+
.. _Tau Manifesto: https://tauday.com/
71+
.. _Pi is (still) wrong: https://vimeo.com/147792667
72+
.. _Pi is wrong!: https://www.youtube.com/watch?v=PIhNNnW1tUo
73+
.. _a page of resources: https://www.math.utah.edu/~palais/pi.html
7474

7575

7676
Copyright

0 commit comments

Comments
 (0)