summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2012-05-19 15:38:27 (GMT)
committerPetri Lehtinen <petri@digip.org>2012-05-19 15:38:43 (GMT)
commit7c5ba513b924692e534e372a135add15e70ac0cb (patch)
treee60f818cded262cb576ee794f2418f5d28771a7d /Misc
parented1183db8b10c6955729824bf5f5bdc430878001 (diff)
parent079bfc962d838cb80a008ad3d949222256e1228d (diff)
downloadcpython-7c5ba513b924692e534e372a135add15e70ac0cb.zip
cpython-7c5ba513b924692e534e372a135add15e70ac0cb.tar.gz
cpython-7c5ba513b924692e534e372a135add15e70ac0cb.tar.bz2
#14494: Document that absolute imports became default in 3.0 instead of 2.7.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 03efd0e..3ccf079 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.3.0 Alpha 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 #9260: A finer-grained import lock. Most of the import sequence
now uses per-module locks rather than the global import lock, eliminating
well-known issues with threads and imports.