summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-22 12:19:04 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-03-22 12:19:04 (GMT)
commita4e4e35783d26151be19253ff6dd1c3ec2ca7efa (patch)
tree548bf2b8c05481fe603f48189579ea7404532900 /Misc
parente112153727def076478a84733f30a8f44f4c8844 (diff)
downloadcpython-a4e4e35783d26151be19253ff6dd1c3ec2ca7efa.zip
cpython-a4e4e35783d26151be19253ff6dd1c3ec2ca7efa.tar.gz
cpython-a4e4e35783d26151be19253ff6dd1c3ec2ca7efa.tar.bz2
check by equality for __future__ not identity (closes #14378)
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 606898f..1c1bf16 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #14378: Fix compiling ast.ImportFrom nodes with a "__future__" string as
+ the module name that was not interned.
+
- Issue #14331: Use significantly less stack space when importing modules by
allocating path buffers on the heap instead of the stack.