summaryrefslogtreecommitdiff
path: root/Lib/__future__.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-02-27 23:24:48 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-02-27 23:24:48 +0000
commitd4e46e691f737a0ebb3eeee2cc259093ed058ba6 (patch)
tree60f758ef26c4c5663b961e397d081e874fbe5c66 /Lib/__future__.py
parente38676216fc06cee34195f664fafc7453d6d260c (diff)
downloadcpython-d4e46e691f737a0ebb3eeee2cc259093ed058ba6.tar.gz
Finish removal of CO_GENERATOR_ALLOWED.
Diffstat (limited to 'Lib/__future__.py')
-rw-r--r--Lib/__future__.py2
1 files changed, 1 insertions, 1 deletions
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: