From b70871d4d76c29c6fbb50e7d584933fea2522292 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Fri, 12 Apr 2002 01:20:10 +0000 Subject: Removed more hair in support of future-generator stmts. --- Python/future.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/future.c') diff --git a/Python/future.c b/Python/future.c index 563bbdff15..beec9fcd19 100644 --- a/Python/future.c +++ b/Python/future.c @@ -35,7 +35,7 @@ future_check_features(PyFutureFeatures *ff, node *n, char *filename) if (strcmp(feature, FUTURE_NESTED_SCOPES) == 0) { continue; } else if (strcmp(feature, FUTURE_GENERATORS) == 0) { - ff->ff_features |= CO_GENERATOR_ALLOWED; + continue; } else if (strcmp(feature, FUTURE_DIVISION) == 0) { ff->ff_features |= CO_FUTURE_DIVISION; } else if (strcmp(feature, "braces") == 0) { -- cgit v1.2.1