Skip to content

Commit 1c1c85a

Browse files
generatedunixname1734921407115435meta-codesync[bot]
authored andcommitted
Sync pre-release CPython 3.15 branch from GitHub (2026-08-21)
Summary: Imported python/cpython `3.15.0rc1+dev` from upstream rev [`f71fbc5`](https://www.github.com/python/cpython/commit/f71fbc558a3051781297106f53820b04c217c13d) (committed 2026-08-21 01:40:43+00:00). # Commit Info - Base: (`3.15.0rc1+dev`) - [`93404ce`](https://www.github.com/python/cpython/commit/93404cebd972cd85a6adfa1af3acf61b74de56eb) (commit date: 2026-08-20 00:54:11+00:00) - Imported: (`3.15.0rc1+dev`) - [`f71fbc5`](https://www.github.com/python/cpython/commit/f71fbc558a3051781297106f53820b04c217c13d) (commit date: 2026-08-21 01:40:43+00:00) Differential Revision: D116894838 fbshipit-source-id: da6bc3594413e343c88f8699bc3ced8278113d4f
1 parent b52d756 commit 1c1c85a

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Doc/about.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and now maintained as an independent project.
1010
.. _reStructuredText: https://docutils.sourceforge.io/rst.html
1111
.. _Sphinx: https://www.sphinx-doc.org/
1212

13-
.. In the online version of these documents, you can submit comments and suggest
13+
.. In the online version of this documentation, you can submit comments and suggest
1414
changes directly on the documentation pages.
1515
1616
Development of the documentation and its toolchain is an entirely volunteer

Doc/tools/templates/indexsidebar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h3>{% trans %}Download{% endtrans %}</h3>
2-
<p><a href="{{ pathto('download') }}">{% trans %}Download these documents{% endtrans %}</a></p>
2+
<p><a href="{{ pathto('download') }}">{% trans %}Download the documentation{% endtrans %}</a></p>
33
<h3>{% trans %}Docs by version{% endtrans %}</h3>
44
<ul>
55
{# _docs_by_version.html is overwritten by build_docs.py for non-EOL versions #}

Doc/tutorial/stdlib.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ aids for working with large modules like :mod:`os`::
3636
<returns an extensive manual page created from the module's docstrings>
3737

3838
For daily file and directory management tasks, the :mod:`shutil` module provides
39-
a higher level interface that is easier to use::
39+
a higher-level interface that is easier to use::
4040

4141
>>> import shutil
4242
>>> shutil.copyfile('data.db', 'archive.db')
@@ -63,7 +63,7 @@ wildcard searches::
6363
Command-line arguments
6464
======================
6565

66-
Common utility scripts often need to process command line arguments. These
66+
Common utility scripts often need to process command-line arguments. These
6767
arguments are stored in the :mod:`sys` module's *argv* attribute as a list. For
6868
instance, let's take the following :file:`demo.py` file::
6969

@@ -77,7 +77,7 @@ line::
7777
['demo.py', 'one', 'two', 'three']
7878

7979
The :mod:`argparse` module provides a more sophisticated mechanism to process
80-
command line arguments. The following script extracts one or more filenames
80+
command-line arguments. The following script extracts one or more filenames
8181
and an optional number of lines to be displayed::
8282

8383
import argparse

0 commit comments

Comments
 (0)