From b09f7ed6235783fca27a4f8730c4c33e0f53c16c Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 15 Jul 2001 21:08:29 +0000 Subject: Preliminary support for "from __future__ import generators" to enable the yield statement. I figure we have to have this in before I can release 2.2a1 on Wednesday. Note: test_generators is currently broken, I'm counting on Tim to fix this. --- Lib/tokenize.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Lib/tokenize.py') diff --git a/Lib/tokenize.py b/Lib/tokenize.py index b79cdc0016..cbe45529c2 100644 --- a/Lib/tokenize.py +++ b/Lib/tokenize.py @@ -22,6 +22,8 @@ are the same, except instead of generating tokens, tokeneater is a callback function to which the 5 fields described above are passed as 5 arguments, each time a new token is found.""" +from __future__ import generators + __author__ = 'Ka-Ping Yee ' __credits__ = \ 'GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip Montanaro' -- cgit v1.2.1