From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 25 Jun 2025 17:52:59 +0000 (+0200) Subject: [3.14] Docs: Fix indentation in `slice` class of `functions.rst` (GH-134393) (#135948) X-Git-Tag: v3.14.0b4~99 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39bbf59a1922f92d91b6bec657d0458f9843c8a9;p=thirdparty%2FPython%2Fcpython.git [3.14] Docs: Fix indentation in `slice` class of `functions.rst` (GH-134393) (#135948) Docs: Fix indentation in `slice` class of `functions.rst` (GH-134393) Paragraph should not be under `slice.step`. It applies to the whole class. (cherry picked from commit 6227662ff3bf838d31e9441eda935d24733d705a) Co-authored-by: Rob Reynolds <13379223+reynoldsnlp@users.noreply.github.com> --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 2ecce3dba5a0..80bd1275973f 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1839,15 +1839,15 @@ are always available. They are listed here in alphabetical order. ``range(start, stop, step)``. The *start* and *step* arguments default to ``None``. + Slice objects have read-only data attributes :attr:`!start`, + :attr:`!stop`, and :attr:`!step` which merely return the argument + values (or their default). They have no other explicit functionality; + however, they are used by NumPy and other third-party packages. + .. attribute:: slice.start .. attribute:: slice.stop .. attribute:: slice.step - Slice objects have read-only data attributes :attr:`!start`, - :attr:`!stop`, and :attr:`!step` which merely return the argument - values (or their default). They have no other explicit functionality; - however, they are used by NumPy and other third-party packages. - Slice objects are also generated when extended indexing syntax is used. For example: ``a[start:stop:step]`` or ``a[start:stop, i]``. See :func:`itertools.islice` for an alternate version that returns an