diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-03-22 12:19:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-03-22 12:19:04 (GMT) |
commit | a4e4e35783d26151be19253ff6dd1c3ec2ca7efa (patch) | |
tree | 548bf2b8c05481fe603f48189579ea7404532900 /Misc | |
parent | e112153727def076478a84733f30a8f44f4c8844 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |