mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
[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 6227662ff3)
Co-authored-by: Rob Reynolds <13379223+reynoldsnlp@users.noreply.github.com>
This commit is contained in:
parent
80fc62f8af
commit
39bbf59a19
1 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue