summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2021-04-02 15:28:35 (GMT)
committerGitHub <noreply@github.com>2021-04-02 15:28:35 (GMT)
commitafd12650580725ac598b2845384771c14c4f952e (patch)
tree2290e54eaa5fdb75d0b0513f0e575c440150fafd /Misc
parent240bcf82a11fe7433a61da70605e924c53b88096 (diff)
downloadcpython-afd12650580725ac598b2845384771c14c4f952e.zip
cpython-afd12650580725ac598b2845384771c14c4f952e.tar.gz
cpython-afd12650580725ac598b2845384771c14c4f952e.tar.bz2
bpo-31956: Add start and stop parameters to array.index() (GH-25059)
Co-Authored-By: Anders Lorentsen <Phaqui@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-03-28-16-53-25.bpo-31956.Lt_67U.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-03-28-16-53-25.bpo-31956.Lt_67U.rst b/Misc/NEWS.d/next/Library/2021-03-28-16-53-25.bpo-31956.Lt_67U.rst
new file mode 100644
index 0000000..5285fd3
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-03-28-16-53-25.bpo-31956.Lt_67U.rst
@@ -0,0 +1,2 @@
+The :meth:`~array.array.index` method of :class:`array.array` now has
+optional *start* and *stop* parameters.