start uniting tokenize.TokenInfo and token.Token

This commit is contained in:
Dave Halter
2014-02-25 13:54:18 +01:00
parent 5b84f0b27f
commit f4f79317fe
4 changed files with 15 additions and 14 deletions

View File

@@ -1110,7 +1110,7 @@ class Statement(Simple):
start_pos = tok.start_pos
end_pos = tok.end_pos
else:
token_type = tok_temp.token_type
token_type = tok_temp.type
tok = tok_temp.token
start_pos = tok_temp.start_pos
end_pos = tok_temp.end_pos