diff options
author | Chris Rands <c_rands100@hotmail.com> | 2018-12-19 16:19:39 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2018-12-19 16:19:39 (GMT) |
commit | 55cc34500e5abbfedb89adc95e3f94d53c544933 (patch) | |
tree | 186af112f675dc931c2b0271353032a2296eba2e /Lib/__future__.py | |
parent | 57dd79e6f7f33bb4e6817ac58c9cb91de99675e0 (diff) | |
download | cpython-55cc34500e5abbfedb89adc95e3f94d53c544933.zip cpython-55cc34500e5abbfedb89adc95e3f94d53c544933.tar.gz cpython-55cc34500e5abbfedb89adc95e3f94d53c544933.tar.bz2 |
bpo-35526: make __future__.barry_as_FLUFL mandatory for Python 4.0 (#11218)
* extending the joke!
* 📜🤖 Added by blurb_it.
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 ce8bed7..e113568 100644 --- a/Lib/__future__.py +++ b/Lib/__future__.py @@ -134,7 +134,7 @@ unicode_literals = _Feature((2, 6, 0, "alpha", 2), CO_FUTURE_UNICODE_LITERALS) barry_as_FLUFL = _Feature((3, 1, 0, "alpha", 2), - (3, 9, 0, "alpha", 0), + (4, 0, 0, "alpha", 0), CO_FUTURE_BARRY_AS_BDFL) generator_stop = _Feature((3, 5, 0, "beta", 1), |