summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2016-09-10 19:17:36 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2016-09-10 19:17:36 (GMT)
commit36820dd5a90724f68d4677e6eede29995541463c (patch)
treed94150b390eb3036c6fcdbe908d50a29f93768ee /Misc
parentf028d9f71a5367df6062388166ebddfa2fe4e5e1 (diff)
downloadcpython-36820dd5a90724f68d4677e6eede29995541463c.zip
cpython-36820dd5a90724f68d4677e6eede29995541463c.tar.gz
cpython-36820dd5a90724f68d4677e6eede29995541463c.tar.bz2
Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 13b448c..f728c36 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #25221: Fix corrupted result from PyLong_FromLong(0) when
+ Python is compiled with NSMALLPOSINTS = 0.
+
- Issue #25758: Prevents zipimport from unnecessarily encoding a filename
(patch by Eryk Sun)