summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-22 12:19:50 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-03-22 12:19:50 (GMT)
commit98ba7534322696250267438053fb36cea5b0a85f (patch)
tree73c4d055f0f2f1d01cbce29adf606c337dc6068e /Misc/NEWS
parent96ad2619b208ce8452f8f6bd5127f32e2b097d2c (diff)
parenta4e4e35783d26151be19253ff6dd1c3ec2ca7efa (diff)
downloadcpython-98ba7534322696250267438053fb36cea5b0a85f.zip
cpython-98ba7534322696250267438053fb36cea5b0a85f.tar.gz
cpython-98ba7534322696250267438053fb36cea5b0a85f.tar.bz2
merge 3.2 (#14378)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 70d908e..85ac5c0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,7 +13,11 @@ Core and Builtins
- Issue #1683368: object.__new__ and object.__init__ raise a TypeError if they
are passed arguments and their complementary method is not overridden.
-- Give the ast.AST class a __dict__.
+- 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.
- Issue #14334: Prevent in a segfault in type.__getattribute__ when it was not
passed strings.