commit | eaed39f303be60dfde45179f21302a7d3789c755 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Fri Mar 03 19:12:58 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Fri Mar 03 19:12:58 2006 +0000 |
tree | 4cc02f1fcfe6c6de10d2a6267b699bd2bad418c2 | |
parent | fa0cf4f3ae1c4eac0a6d45af89fcbcecc62f910c [diff] [blame] |
Hopefully this removes all vestiges of CO_GENERATOR_ALLOWED that can be removed in 2.x.
diff --git a/Lib/compiler/consts.py b/Lib/compiler/consts.py index d760982..c79e814 100644 --- a/Lib/compiler/consts.py +++ b/Lib/compiler/consts.py
@@ -15,7 +15,7 @@ CO_VARKEYWORDS = 0x0008 CO_NESTED = 0x0010 CO_GENERATOR = 0x0020 -CO_GENERATOR_ALLOWED = 0x1000 +CO_GENERATOR_ALLOWED = 0 CO_FUTURE_DIVISION = 0x2000 CO_FUTURE_ABSIMPORT = 0x4000 CO_FUTURE_WITH_STATEMENT = 0x8000