Cosmetic: make another comment clearer

This commit is contained in:
Sei Lisa 2014-07-26 04:45:56 +02:00
parent cfa7e1de89
commit 8078be8401

View file

@ -919,7 +919,7 @@ class parser(object):
# Promote value to float
term = [S[op], S[type1], term, self.autocastcheck(value, type1)]
else:
# Convert LHS to type2 if possible (note keys are not allowed)
# Convert LHS to type2 if possible (note no keys arrive here)
term = [S[op], S[type2], self.autocastcheck(term, type2), value]
return term