diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-02-27 23:24:48 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-02-27 23:24:48 (GMT) |
commit | 0023a2f858e62ad364156c008a3f79d6ae32d1c8 (patch) | |
tree | 0b780988a6d4a789dd0820e707ecb7a0df26fd4e /Lib/__future__.py | |
parent | 1d519e4625ad5ea910617413687f13b765f32e99 (diff) | |
download | cpython-0023a2f858e62ad364156c008a3f79d6ae32d1c8.zip cpython-0023a2f858e62ad364156c008a3f79d6ae32d1c8.tar.gz cpython-0023a2f858e62ad364156c008a3f79d6ae32d1c8.tar.bz2 |
Finish removal of CO_GENERATOR_ALLOWED.
Diffstat (limited to 'Lib/__future__.py')
-rw-r--r-- | Lib/__future__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/__future__.py b/Lib/__future__.py index 8940a95..fc47459 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: |