diff options
| author | Petri Lehtinen <petri@digip.org> | 2012-05-19 15:34:06 (GMT) |
|---|---|---|
| committer | Petri Lehtinen <petri@digip.org> | 2012-05-19 15:36:04 (GMT) |
| commit | 5f39706b07bc16fd7affc99fd485592f71c13979 (patch) | |
| tree | a366b5c4c85b4ae496e99cfeeb7e5d0626099b12 /Lib/__future__.py | |
| parent | 6d9c1b1617b30ee24eaa358f4142706148d21922 (diff) | |
| download | cpython-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 'Lib/__future__.py')
| -rw-r--r-- | Lib/__future__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/__future__.py b/Lib/__future__.py index 9156459..e0996eb 100644 --- a/Lib/__future__.py +++ b/Lib/__future__.py @@ -112,7 +112,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), |
