Skip to content

Commit a78816b

Browse files
generatedunixname1734921407115435meta-codesync[bot]
authored andcommitted
Sync pre-release CPython 3.15 branch from GitHub (2026-08-06)
Summary: Imported python/cpython `3.15.0rc1+dev` from upstream rev [`606df1b`](https://www.github.com/python/cpython/commit/606df1be0b910f8bd2c06fe0478f20c77c0908a4) (committed 2026-08-06 13:11:16+00:00). # Commit Info - Base: (`3.15.0rc1+dev`) - [`f20b504`](https://www.github.com/python/cpython/commit/f20b504b17d1b35a1404b80ff3578dc9e4762660) (commit date: 2026-08-05 09:14:03+00:00) - Imported: (`3.15.0rc1+dev`) - [`606df1b`](https://www.github.com/python/cpython/commit/606df1be0b910f8bd2c06fe0478f20c77c0908a4) (commit date: 2026-08-06 13:11:16+00:00) Reviewed By: itamaro Differential Revision: D115155248 fbshipit-source-id: 7b24e7d261a47ece6919c93826289c7634807d29
1 parent cdc31b6 commit a78816b

3 files changed

Lines changed: 8 additions & 10 deletions

File tree

Doc/library/ast.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,8 @@ Comprehensions
806806
List and set comprehensions, generator expressions, and dictionary
807807
comprehensions. ``elt`` (or ``key`` and ``value``) is a single node
808808
representing the part that will be evaluated for each item.
809-
809+
For dictionary comprehensions using unpacking, for example
810+
``{**item for item in items}``, ``value`` is ``None``,
810811
``generators`` is a list of :class:`comprehension` nodes.
811812

812813
.. doctest::

Doc/tools/templates/indexcontent.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,16 @@ <h1>{{ docstitle|e }}</h1>
8282
<p><strong>{% trans %}Other resources:{% endtrans %}</strong></p>
8383
<div class="contentstable">
8484
<ul>
85+
<li class="biglink"><a class="biglink" href="https://devguide.python.org">{% trans %}Python developer's guide{% endtrans %}</a><br>
86+
<span class="linkdescr">{% trans %}Information on contributing to Python{% endtrans %}</span></li>
8587
<li class="biglink"><a class="biglink" href="https://packaging.python.org">{% trans %}Python Packaging User Guide{% endtrans %}</a><br>
8688
<span class="linkdescr">{% trans %}Resources relating to Python packaging{% endtrans %}</span></li>
89+
<li class="biglink"><a class="biglink" href="https://www.python.org/doc/av/">{% trans %}Audio/visual talks{% endtrans %}</a><br>
90+
<span class="linkdescr">{% trans %}Podcasts, talks, and video presentations from the community{% endtrans %}</span></li>
8791
</ul>
8892
<ul>
93+
<li class="biglink"><a class="biglink" href="https://peps.python.org/">{% trans %}Python Enhancement Proposals{% endtrans %}</a><br>
94+
<span class="linkdescr">{% trans %}Index of proposed improvements to Python{% endtrans %}</span></li>
8995
<li class="biglink"><a class="biglink" href="https://typing.python.org">{% trans %}Static Typing with Python{% endtrans %}</a><br>
9096
<span class="linkdescr">{% trans %}Information and guides about Python type safety{% endtrans %}</span></li>
9197
</ul>

Doc/tools/templates/indexsidebar.html

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,3 @@ <h3>{% trans %}Docs by version{% endtrans %}</h3>
66
{% include "_docs_by_version.html" without context %}
77
<li><a href="https://www.python.org/doc/versions/">{% trans %}All versions{% endtrans %}</a></li>
88
</ul>
9-
<h3>{% trans %}Other resources{% endtrans %}</h3>
10-
<ul>
11-
{# XXX: many of these should probably be merged in the main docs #}
12-
<li><a href="https://peps.python.org/">{% trans %}PEP index{% endtrans %}</a></li>
13-
<li><a href="https://wiki.python.org/moin/BeginnersGuide">{% trans %}Beginner's guide{% endtrans %}</a></li>
14-
<li><a href="https://wiki.python.org/moin/PythonBooks">{% trans %}Book list{% endtrans %}</a></li>
15-
<li><a href="https://www.python.org/doc/av/">{% trans %}Audio/visual talks{% endtrans %}</a></li>
16-
<li><a href="https://devguide.python.org/">{% trans %}Python developer’s guide{% endtrans %}</a></li>
17-
</ul>

0 commit comments

Comments
 (0)