commit | eff19a13ed4ca04e5be8c93a044952bad7de2054 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Thu Mar 22 08:19:04 2012 -0400 |
committer | Benjamin Peterson <benjamin@python.org> | Thu Mar 22 08:19:04 2012 -0400 |
tree | 6f269bbd8a46c7ed9ba3c86577215fab030038dd | |
parent | 0e3c1075495dfc1ed481f65091d1f9241868324a [diff] [blame] |
check by equality for __future__ not identity (closes #14378)
diff --git a/Misc/NEWS b/Misc/NEWS index 0e12494..310d0fd 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ 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.