diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-02-18 04:12:37 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-02-18 04:12:37 (GMT) |
commit | 79bf89986c6610b30b8c1dc3e4cc5195dc43c8eb (patch) | |
tree | 0ad601e0c4c8391e56f5bc6aaf8baf6709060ace /Lib/tokenize.py | |
parent | 5a8e5796f17715ff6214cec13845006bc1a8bc9f (diff) | |
parent | 5b8d2c3af76e704926cf5915ad0e6af59a232e61 (diff) | |
download | cpython-79bf89986c6610b30b8c1dc3e4cc5195dc43c8eb.zip cpython-79bf89986c6610b30b8c1dc3e4cc5195dc43c8eb.tar.gz cpython-79bf89986c6610b30b8c1dc3e4cc5195dc43c8eb.tar.bz2 |
Merge with 3.3
Diffstat (limited to 'Lib/tokenize.py')
-rw-r--r-- | Lib/tokenize.py | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py index 123e94b..74bd15c 100644 --- a/Lib/tokenize.py +++ b/Lib/tokenize.py @@ -25,12 +25,14 @@ __credits__ = ('GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, ' 'Skip Montanaro, Raymond Hettinger, Trent Nelson, ' 'Michael Foord') import builtins -import re -import sys -from token import * from codecs import lookup, BOM_UTF8 import collections from io import TextIOWrapper +from itertools import chain +import re +import sys +from token import * + cookie_re = re.compile(r'^[ \t\f]*#.*coding[:=][ \t]*([-\w.]+)', re.ASCII) blank_re = re.compile(br'^[ \t\f]*(?:[#\r\n]|$)', re.ASCII) @@ -237,9 +239,10 @@ class Untokenizer: self.tokens.append(" " * col_offset) def untokenize(self, iterable): - for t in iterable: + it = iter(iterable) + for t in it: if len(t) == 2: - self.compat(t, iterable) + self.compat(t, it) break tok_type, token, start, end, line = t if tok_type == ENCODING: @@ -254,17 +257,12 @@ class Untokenizer: return "".join(self.tokens) def compat(self, token, iterable): - startline = False indents = [] toks_append = self.tokens.append - toknum, tokval = token - - if toknum in (NAME, NUMBER): - tokval += ' ' - if toknum in (NEWLINE, NL): - startline = True + startline = token[0] in (NEWLINE, NL) prevstring = False - for tok in iterable: + + for tok in chain([token], iterable): toknum, tokval = tok[:2] if toknum == ENCODING: self.encoding = tokval |