Skip to content

Commit e3f848e

Browse files
authored
Merge branch 'main' into pep-764-updates-2
2 parents ea418fd + 2cefc28 commit e3f848e

23 files changed

+1543
-434
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,6 @@ peps/pep-0745.rst @hugovk
626626
peps/pep-0746.rst @JelleZijlstra
627627
peps/pep-0747.rst @JelleZijlstra
628628
peps/pep-0748.rst @ncoghlan
629-
# ...
630629
peps/pep-0749.rst @JelleZijlstra
631630
peps/pep-0750.rst @gvanrossum @lysnikolaou
632631
peps/pep-0751.rst @brettcannon
@@ -666,8 +665,10 @@ peps/pep-0784.rst @gpshead
666665
peps/pep-0785.rst @gpshead
667666
# ...
668667
peps/pep-0787.rst @ncoghlan
668+
peps/pep-0788.rst @ZeroIntensity @vstinner
669669
# ...
670670
peps/pep-0789.rst @njsmith
671+
peps/pep-0790.rst @hugovk
671672
# ...
672673
peps/pep-0801.rst @warsaw
673674
# ...

.github/workflows/documentation-links.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ concurrency:
1616
jobs:
1717
documentation-links:
1818
runs-on: ubuntu-latest
19+
if: github.event.repository.fork == false
1920
steps:
2021
- uses: readthedocs/actions/preview@v1
2122
with:

pep_sphinx_extensions/pep_theme/templates/page.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,7 @@ <h2>Contents</h2>
6363
<script src="{{ pathto('_static/colour_scheme.js', resource=True) }}"></script>
6464
<script src="{{ pathto('_static/wrap_tables.js', resource=True) }}"></script>
6565
<script src="{{ pathto('_static/sticky_banner.js', resource=True) }}"></script>
66+
<script src="https://analytics.python.org/js/script.outbound-links.js"
67+
data-domain="peps.python.org" defer></script>
6668
</body>
6769
</html>

peps/pep-0423.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ References and footnotes:
823823
.. _`in development official packaging documentation`:
824824
http://docs.python.org/dev/packaging/
825825
.. _`The Hitchhiker's Guide to Packaging`:
826-
http://guide.python-distribute.org/specification.html#naming-specification
826+
https://the-hitchhikers-guide-to-packaging.readthedocs.io/en/latest/
827827

828828

829829
Copyright

peps/pep-0718.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Status: Draft
77
Type: Standards Track
88
Topic: Typing
99
Created: 23-Jun-2023
10-
Python-Version: 3.13
10+
Python-Version: 3.15
1111
Post-History: `24-Jun-2023 <https://discuss.python.org/t/28457/>`__
1212

1313
Abstract

peps/pep-0720.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ must be resolvable at link time. POSIX-like platforms based on Windows — like
703703
Cygwin, MinGW, or MSYS — will also require linking against ``libpython``.
704704

705705
On most POSIX platforms, it is not necessary to link against ``libpython``, as
706-
the symbols will already be available in the due to the interpreter — or, when
706+
the symbols will already be available due to the interpreter — or, when
707707
embedding, the executable/library in question — already linking to
708708
``libpython``. Not linking an extension module against ``libpython`` will allow
709709
it to be loaded by static Python builds, so when possible, it is desirable to do

peps/pep-0727.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Title: Documentation in Annotated Metadata
33
Author: Sebastián Ramírez <tiangolo@gmail.com>
44
Sponsor: Jelle Zijlstra <jelle.zijlstra@gmail.com>
55
Discussions-To: https://discuss.python.org/t/32566
6-
Status: Draft
6+
Status: Withdrawn
77
Type: Standards Track
88
Topic: Typing
99
Created: 28-Aug-2023
@@ -18,6 +18,12 @@ This PEP proposes a standardized way to provide documentation strings for Python
1818
symbols defined with :py:class:`~typing.Annotated` using a new class
1919
``typing.Doc``.
2020

21+
PEP Withdrawal
22+
==============
23+
24+
The reception of this PEP was mostly negative, with concerns raised about
25+
verbosity and readability. As a result, this PEP has been withdrawn.
26+
2127

2228
Motivation
2329
==========

0 commit comments

Comments
 (0)