summaryrefslogtreecommitdiff
path: root/Python/future.c
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2006-02-28 19:02:24 +0000
committerThomas Wouters <thomas@python.org>2006-02-28 19:02:24 +0000
commita32da9df39a8ed9150faf8dfc91fcc0102e7b3e5 (patch)
treefc09307043f0a396c92cc74e45e6fb8c64e15b9a /Python/future.c
parent8225eb8adef40e35c3d8fdaeaea54ee1dbe2b7a7 (diff)
downloadcpython-a32da9df39a8ed9150faf8dfc91fcc0102e7b3e5.tar.gz
from __future__ import with_statement addon for 'with', mostly written by
Neal.
Diffstat (limited to 'Python/future.c')
-rw-r--r--Python/future.c2
1 files changed, 2 insertions, 0 deletions
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");