diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-04-03 06:58:51 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-04-03 06:58:51 (GMT) |
commit | 9e5eb4ffbf2198ad5721078b4a76e7a63c0ac3c6 (patch) | |
tree | 9ebe6cdc085cedc2108c2e3fd9ce92d500313962 /Lib | |
parent | b0b20a10bccfada2facab090a5f663028c0a8c50 (diff) | |
download | cpython-9e5eb4ffbf2198ad5721078b4a76e7a63c0ac3c6.zip cpython-9e5eb4ffbf2198ad5721078b4a76e7a63c0ac3c6.tar.gz cpython-9e5eb4ffbf2198ad5721078b4a76e7a63c0ac3c6.tar.bz2 |
I could have sworn this was part of the change to not abbreviate ABSOLUTE
Diffstat (limited to 'Lib')
-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 79bee24..d8e14d1 100644 --- a/Lib/__future__.py +++ b/Lib/__future__.py @@ -109,7 +109,7 @@ division = _Feature((2, 2, 0, "alpha", 2), absolute_import = _Feature((2, 5, 0, "alpha", 1), (2, 7, 0, "alpha", 0), - CO_FUTURE_ABSIMPORT) + CO_FUTURE_ABSOLUTE_IMPORT) with_statement = _Feature((2, 5, 0, "alpha", 1), (2, 6, 0, "alpha", 0), |