From: Jeremy Hylton Date: Wed, 26 Sep 2001 19:54:08 +0000 (+0000) Subject: Don't export generators future info X-Git-Tag: v2.2.1c1~1599 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f38c1e6643397135563aa365f8d0c0315ab70e7;p=thirdparty%2FPython%2Fcpython.git Don't export generators future info --- diff --git a/Lib/types.py b/Lib/types.py index 1bb560cb099e..c5737a4f2d8a 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