SF patch #1007189, multi-line imports, for instance:
"from blah import (foo, bar
baz, bongo)"
diff --git a/Misc/NEWS b/Misc/NEWS
index e01b9e7..819a107 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
Core and builtins
-----------------
+- SF patch #1007189: ``from ... import ...`` statements now allow the name
+ list to be surrounded by parentheses.
+
- Some speedups for long arithmetic, thanks to Trevor Perrin. Gradeschool
multiplication was sped a little by optimizing the C code. Gradeschool
squaring was sped by about a factor of 2, by exploiting that about half
@@ -889,7 +892,7 @@
API matches math.log().
- Bug #957381: distutils bdist_rpm no longer fails on recent RPM versions
- that generate a *-debuginfo.rpm.
+ that generate a -debuginfo.rpm
- os.path.devnull has been added for all supported platforms.