summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2019-06-07 09:41:10 -0600
committerVictor Stinner <vstinner@redhat.com>2019-06-07 17:41:10 +0200
commite36ed475ea429f7cc80a4d65f80b44686a74b246 (patch)
tree10fde905cce142de868716059b0a1377618a5324 /Misc
parent4ea9dbda4ad823875ed79a25062a7f5415d91b22 (diff)
downloadcpython-git-e36ed475ea429f7cc80a4d65f80b44686a74b246.tar.gz
[3.7] bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH-13860) (GH-13896)
(cherry picked from commit dc2476500d91082f0c907772c83a044bf49af279) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2019-06-06-08-47-04.bpo-37170.hO_fpM.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2019-06-06-08-47-04.bpo-37170.hO_fpM.rst b/Misc/NEWS.d/next/C API/2019-06-06-08-47-04.bpo-37170.hO_fpM.rst
new file mode 100644
index 0000000000..7a35c9583d
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2019-06-06-08-47-04.bpo-37170.hO_fpM.rst
@@ -0,0 +1 @@
+Fix the cast on error in :c:func:`PyLong_AsUnsignedLongLongMask()`.