summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHongWeipeng <hongweichen8888@sina.com>2019-09-08 10:15:56 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2019-09-08 10:15:56 (GMT)
commit3c87a667bb367ace1de6bd1577fdb4f66947da52 (patch)
treee5fd31e977fc7d8041cb85c432de6715b055d55d /Misc
parent32a960f8e1015b64b4b955b3d62920c5903d4c6f (diff)
downloadcpython-3c87a667bb367ace1de6bd1577fdb4f66947da52.zip
cpython-3c87a667bb367ace1de6bd1577fdb4f66947da52.tar.gz
cpython-3c87a667bb367ace1de6bd1577fdb4f66947da52.tar.bz2
bpo-36946:Fix possible signed integer overflow when handling slices. (GH-15639)
This is a complement to PR 13375.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-09-02-16-17-42.bpo-36946._lAuSR.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-09-02-16-17-42.bpo-36946._lAuSR.rst b/Misc/NEWS.d/next/Core and Builtins/2019-09-02-16-17-42.bpo-36946._lAuSR.rst
new file mode 100644
index 0000000..e0c5d71
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-09-02-16-17-42.bpo-36946._lAuSR.rst
@@ -0,0 +1 @@
+Fix possible signed integer overflow when handling slices. Patch by hongweipeng.