From eaed39f303be60dfde45179f21302a7d3789c755 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 3 Mar 2006 19:12:58 +0000 Subject: Hopefully this removes all vestiges of CO_GENERATOR_ALLOWED that can be removed in 2.x. --- Lib/compiler/consts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/compiler/consts.py') diff --git a/Lib/compiler/consts.py b/Lib/compiler/consts.py index d7609824e71..c79e814beb7 100644 --- a/Lib/compiler/consts.py +++ b/Lib/compiler/consts.py @@ -15,7 +15,7 @@ CO_VARARGS = 0x0004 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 -- cgit v1.2.3