summaryrefslogtreecommitdiffstats
path: root/Lib/tokenize.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-04-01 00:28:59 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-04-01 00:28:59 (GMT)
commit496563a5146e2650dcf6f3595c58ff24f39a9afb (patch)
tree1afd27b48db59487d02d59abd52c7387dacaed28 /Lib/tokenize.py
parent62f5a9d6c2e99b688e388d33c226e41174640082 (diff)
downloadcpython-496563a5146e2650dcf6f3595c58ff24f39a9afb.zip
cpython-496563a5146e2650dcf6f3595c58ff24f39a9afb.tar.gz
cpython-496563a5146e2650dcf6f3595c58ff24f39a9afb.tar.bz2
Remove some now-obsolete generator future statements.
I left the email pkg alone; I'm not sure how Barry would like to handle that.
Diffstat (limited to 'Lib/tokenize.py')
-rw-r--r--Lib/tokenize.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py
index f7ff000..27ee1bc 100644
--- a/Lib/tokenize.py
+++ b/Lib/tokenize.py
@@ -22,8 +22,6 @@ 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 <ping@lfw.org>'
__credits__ = \
'GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip Montanaro'