diff -r 70c58903b52e Doc/library/__future__.rst --- a/Doc/library/__future__.rst Wed Apr 04 14:19:04 2012 +0200 +++ b/Doc/library/__future__.rst Wed Apr 04 13:52:43 2012 +0100 @@ -75,7 +75,7 @@ | division | 2.2.0a2 | 3.0 | :pep:`238`: | | | | | *Changing the Division Operator* | +------------------+-------------+--------------+---------------------------------------------+ -| absolute_import | 2.5.0a1 | 2.7 | :pep:`328`: | +| absolute_import | 2.5.0a1 | 3.0 | :pep:`328`: | | | | | *Imports: Multi-Line and Absolute/Relative* | +------------------+-------------+--------------+---------------------------------------------+ | with_statement | 2.5.0a1 | 2.6 | :pep:`343`: | diff -r 70c58903b52e Lib/__future__.py --- a/Lib/__future__.py Wed Apr 04 14:19:04 2012 +0200 +++ b/Lib/__future__.py Wed Apr 04 13:52:43 2012 +0100 @@ -114,7 +114,7 @@ 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),