summaryrefslogtreecommitdiffstats
path: root/Lib
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 /Lib
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 'Lib')
-rw-r--r--Lib/__future__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/__future__.py b/Lib/__future__.py
index 8f8a490..3b2d5ec 100644
--- a/Lib/__future__.py
+++ b/Lib/__future__.py
@@ -114,7 +114,7 @@ division = _Feature((2, 2, 0, "alpha", 2),
CO_FUTURE_DIVISION)
absolute_import = _Feature((2, 5, 0, "alpha", 1),
- (2, 7, 0, "alpha", 0),
+ (3, 0, 0, "alpha", 0),
CO_FUTURE_ABSOLUTE_IMPORT)
with_statement = _Feature((2, 5, 0, "alpha", 1),