diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-09-26 19:54:08 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-09-26 19:54:08 (GMT) |
commit | 4f38c1e6643397135563aa365f8d0c0315ab70e7 (patch) | |
tree | d9142234cc4819cd773c212fcb09fe9eabe80146 /Lib | |
parent | c631489289145041c310a7a06caf498eeb49a5d2 (diff) | |
download | cpython-4f38c1e6643397135563aa365f8d0c0315ab70e7.zip cpython-4f38c1e6643397135563aa365f8d0c0315ab70e7.tar.gz cpython-4f38c1e6643397135563aa365f8d0c0315ab70e7.tar.bz2 |
Don't export generators future info
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/types.py b/Lib/types.py index 1bb560c..c5737a4 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -83,4 +83,4 @@ EllipsisType = type(Ellipsis) DictProxyType = type(TypeType.__dict__) -del sys, _f, _C, _x # Not for export +del sys, _f, _C, _x, generators # Not for export |