]> granicus.if.org Git - python/commitdiff
Wups, add NEWS item I'd written but not checked in.
authorThomas Wouters <thomas@python.org>
Tue, 28 Feb 2006 16:37:25 +0000 (16:37 +0000)
committerThomas Wouters <thomas@python.org>
Tue, 28 Feb 2006 16:37:25 +0000 (16:37 +0000)
Misc/NEWS

index 3ad50b5df486da9bb9000e855687cdd89db691a4..1a08651e34387f0edba1e5df3ed46dadf53f2029 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,12 @@ What's New in Python 2.5 alpha 1?
 Core and builtins
 -----------------
 
+- Patch #1438387, PEP 328: relative and absolute imports. Imports can now be
+  explicitly relative, using 'from .module import name' to mean 'from the same
+  package as this module is in. Imports without dots still default to the
+  old relative-then-absolute, unless 'from __future__ import
+  absolute_import' is used.
+
 - Properly check if 'warnings' raises an exception (usually when a filter set
   to "error" is triggered) when raising a warning for raising string
   exceptions.