summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2012-05-19 15:34:06 (GMT)
committerPetri Lehtinen <petri@digip.org>2012-05-19 15:36:33 (GMT)
commit079bfc962d838cb80a008ad3d949222256e1228d (patch)
treecbceea43337e95c19de480f6b63de0819b33fa4c /Misc/NEWS
parent6709b7d5d1b8643856a3e0f864c0657a927f427a (diff)
downloadcpython-079bfc962d838cb80a008ad3d949222256e1228d.zip
cpython-079bfc962d838cb80a008ad3d949222256e1228d.tar.gz
cpython-079bfc962d838cb80a008ad3d949222256e1228d.tar.bz2
#14494: Document that absolute imports became default in 3.0 instead of 2.7.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ead1bbf..4bc3d1b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #14494: Fix __future__.py and its documentation to note that
+ absolute imports are the default behavior in 3.0 instead of 2.7.
+ Patch by Sven Marnach.
+
- Issue #14761: Fix potential leak on an error case in the import machinery.
- Issue #14699: Fix calling the classmethod descriptor directly.