summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2019-09-09 16:28:34 (GMT)
committerT. Wouters <thomas@python.org>2019-09-09 16:28:34 (GMT)
commit92709a263e9cec0bc646ccc1ea051fc528800d8d (patch)
tree50dfa3690e7112d46de23e0f372f4c427304774d /Misc
parent915cd3f0696cb8a7206754a8fc34d4cd865a1b4a (diff)
downloadcpython-92709a263e9cec0bc646ccc1ea051fc528800d8d.zip
cpython-92709a263e9cec0bc646ccc1ea051fc528800d8d.tar.gz
cpython-92709a263e9cec0bc646ccc1ea051fc528800d8d.tar.bz2
bpo-37840: Fix handling of negative indices in bytearray_getitem() (GH-15250)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-08-13-18-05-20.bpo-37840.elLCci.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-08-13-18-05-20.bpo-37840.elLCci.rst b/Misc/NEWS.d/next/Core and Builtins/2019-08-13-18-05-20.bpo-37840.elLCci.rst
new file mode 100644
index 0000000..df689da
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-08-13-18-05-20.bpo-37840.elLCci.rst
@@ -0,0 +1,2 @@
+Fix handling of negative indices in :c:member:`~PySequenceMethods.sq_item`
+of :class:`bytearray`. Patch by Sergey Fedoseev.