From: Neal Norwitz <nnorwitz@gmail.com>
Date: Mon, 27 Feb 2006 23:24:48 +0000 (+0000)
Subject: Finish removal of CO_GENERATOR_ALLOWED.
X-Git-Tag: v2.5a0~503
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0023a2f858e62ad364156c008a3f79d6ae32d1c8;p=python

Finish removal of CO_GENERATOR_ALLOWED.
---

diff --git a/Lib/__future__.py b/Lib/__future__.py
index 8940a95aee..fc47459736 100644
--- a/Lib/__future__.py
+++ b/Lib/__future__.py
@@ -60,7 +60,7 @@ __all__ = ["all_feature_names"] + all_feature_names
 # they're not exported in __all__, because they don't really belong to
 # this module.
 CO_NESTED            = 0x0010   # nested_scopes
-CO_GENERATOR_ALLOWED = 0x1000   # generators
+CO_GENERATOR_ALLOWED = 0        # generators (obsolete, was 0x1000)
 CO_FUTURE_DIVISION   = 0x2000   # division
 
 class _Feature:
diff --git a/Misc/NEWS b/Misc/NEWS
index 6738809ecf..4e16038deb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5 alpha 1?
 Core and builtins
 -----------------
 
+- CO_GENERATOR_ALLOWED is no longer defined, this behavior is the default.
+  The name was removed from Include/code.h.
+
 - PEP 308: conditional expressions were added (x if cond else y).
 
 - Patch 1433928: