From a32da9df39a8ed9150faf8dfc91fcc0102e7b3e5 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Tue, 28 Feb 2006 19:02:24 +0000 Subject: from __future__ import with_statement addon for 'with', mostly written by Neal. --- 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 0a87b10066..4a48ba53e4 100644 --- a/Python/future.c +++ b/Python/future.c @@ -31,6 +31,8 @@ future_check_features(PyFutureFeatures *ff, stmt_ty s, const char *filename) ff->ff_features |= CO_FUTURE_DIVISION; } else if (strcmp(feature, FUTURE_ABSIMPORT) == 0) { ff->ff_features |= CO_FUTURE_ABSIMPORT; + } else if (strcmp(feature, FUTURE_WITH_STATEMENT) == 0) { + ff->ff_features |= CO_FUTURE_WITH_STATEMENT; } else if (strcmp(feature, "braces") == 0) { PyErr_SetString(PyExc_SyntaxError, "not a chance"); -- cgit v1.2.1