[Python-checkins] bpo-35526: make __future__.barry_as_FLUFL mandatory for Python 4.0 (#11218)

Barry Warsaw webhook-mailer at python.org
Wed Dec 19 11:19:43 EST 2018


https://github.com/python/cpython/commit/55cc34500e5abbfedb89adc95e3f94d53c544933
commit: 55cc34500e5abbfedb89adc95e3f94d53c544933
branch: master
author: Chris Rands <c_rands100 at hotmail.com>
committer: Barry Warsaw <barry at python.org>
date: 2018-12-19T08:19:39-08:00
summary:

bpo-35526: make __future__.barry_as_FLUFL mandatory for Python 4.0 (#11218)

* extending the joke!

* 📜🤖 Added by blurb_it.

files:
A Misc/NEWS.d/next/Library/2018-12-18-21-12-25.bpo-35526.fYvo6H.rst
M Lib/__future__.py

diff --git a/Lib/__future__.py b/Lib/__future__.py
index ce8bed7a643c..e1135685d846 100644
--- a/Lib/__future__.py
+++ b/Lib/__future__.py
@@ -134,7 +134,7 @@ def __repr__(self):
                             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),
diff --git a/Misc/NEWS.d/next/Library/2018-12-18-21-12-25.bpo-35526.fYvo6H.rst b/Misc/NEWS.d/next/Library/2018-12-18-21-12-25.bpo-35526.fYvo6H.rst
new file mode 100644
index 000000000000..ea1096393d21
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-12-18-21-12-25.bpo-35526.fYvo6H.rst
@@ -0,0 +1 @@
+Delaying the 'joke' of barry_as_FLUFL.mandatory to Python version 4.0
\ No newline at end of file



More information about the Python-checkins mailing list