summaryrefslogtreecommitdiffstats
path: root/Misc
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:04 (GMT)
commit5f39706b07bc16fd7affc99fd485592f71c13979 (patch)
treea366b5c4c85b4ae496e99cfeeb7e5d0626099b12 /Misc
parent6d9c1b1617b30ee24eaa358f4142706148d21922 (diff)
downloadcpython-5f39706b07bc16fd7affc99fd485592f71c13979.zip
cpython-5f39706b07bc16fd7affc99fd485592f71c13979.tar.gz
cpython-5f39706b07bc16fd7affc99fd485592f71c13979.tar.bz2
#14494: Document that absolute imports became default in 3.0 instead of 2.7.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index ca1f5dc..2844dfa 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -544,6 +544,7 @@ Ken Manheimer
Vladimir Marangozov
David Marek
Doug Marien
+Sven Marnach
Alex Martelli
Anthony Martin
Sébastien Martini
diff --git a/Misc/NEWS b/Misc/NEWS
index be55960..e8ce85d8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,10 @@ What's New in Python 2.7.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.