From e3944a5e1ecf67aa722fd9ce0c0a4ee72ee5ba2d Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 1 Apr 2009 05:08:41 +0000 Subject: The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)! --- Python/future.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Python/future.c') diff --git a/Python/future.c b/Python/future.c index 1a2db1b843..4178541585 100644 --- a/Python/future.c +++ b/Python/future.c @@ -39,6 +39,8 @@ future_check_features(PyFutureFeatures *ff, stmt_ty s, const char *filename) continue; } else if (strcmp(feature, FUTURE_UNICODE_LITERALS) == 0) { continue; + } else if (strcmp(feature, FUTURE_BARRY_AS_BDFL) == 0) { + ff->ff_features |= CO_FUTURE_BARRY_AS_BDFL; } else if (strcmp(feature, "braces") == 0) { PyErr_SetString(PyExc_SyntaxError, "not a chance"); -- cgit v1.2.1