summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-09-14 05:09:48 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-09-14 05:09:48 (GMT)
commit4aa74c429cabef6aaf91b2b0d4c2163778b1249d (patch)
tree2615bf5ed21c6b39c4b6c94f1fc536e1f266e890 /Misc
parent134192630a28d6ae6c2a256f95a44a2dd3c65388 (diff)
downloadcpython-4aa74c429cabef6aaf91b2b0d4c2163778b1249d.zip
cpython-4aa74c429cabef6aaf91b2b0d4c2163778b1249d.tar.gz
cpython-4aa74c429cabef6aaf91b2b0d4c2163778b1249d.tar.bz2
Issue #28131: Fix a regression in zipimport's compile_source()
zipimport should use the same optimization level as the interpreter.
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 246ac72..e61e98b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #28131: Fix a regression in zipimport's compile_source(). zipimport
+ should use the same optimization level as the interpreter.
+
- Issue #25221: Fix corrupted result from PyLong_FromLong(0) when
Python is compiled with NSMALLPOSINTS = 0.