summaryrefslogtreecommitdiff
path: root/Python/future.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-07-16 03:11:48 +0000
committerTim Peters <tim.peters@gmail.com>2001-07-16 03:11:48 +0000
commitb4638518f7900f5814531ebf06fc387cd084a484 (patch)
tree0586eeeb676e59be8a3a0571c7a5b4fcaea22e04 /Python/future.c
parent0bfd3b1baa5c5cfbcc6d35622f6f2781d4e4c9d8 (diff)
downloadcpython-b4638518f7900f5814531ebf06fc387cd084a484.tar.gz
future.c: insert a cosmetic space.
pythonrun.c, run_pyc_file(): repair semantic error wrt CO_GENERATOR vs CO_GENERATOR_ALLOWED.
Diffstat (limited to 'Python/future.c')
-rw-r--r--Python/future.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/future.c b/Python/future.c
index f0960ae861..fc0d7482c9 100644
--- a/Python/future.c
+++ b/Python/future.c
@@ -32,7 +32,7 @@ future_check_features(PyFutureFeatures *ff, node *n, char *filename)
if (strcmp(feature, FUTURE_NESTED_SCOPES) == 0) {
ff->ff_nested_scopes = 1;
} else if (strcmp(feature, FUTURE_GENERATORS) == 0) {
- ff->ff_generators= 1;
+ ff->ff_generators = 1;
} else if (strcmp(feature, "braces") == 0) {
PyErr_SetString(PyExc_SyntaxError,
"not a chance");