Sven Brauch <svenbra...@googlemail.com> added the comment:

Hi,

I agree that the current behavior is not wrong or such. It's just entirely 
useless.
For all the other types of subscripts, such as a[b][c][d] or a(b)(c)(d), the 
ranges of the actual subscript ASTs are also nulled, but there's an additional 
Name (or whatever) AST created for b, c, and d which contains their ranges. Why 
isn't it like this for attributes?

I also don't really see a reason why those ranges shouldn't be changed for all 
possible cases (subscript / call / attribute). It will contain more information 
while not taking any more memory or such, and it will be more intuitive. You 
can still get the information on where the expression starts by going up the 
chain to the next Expression AST node, which seems much more logical to me than 
storing this -- rarely useful -- information redundantly in maybe dozens of 
nodes. After all, the ast module is meant for "end users" to base applications 
on it, isn't it?

Otherwise, you should at least be consistent and remove that range information 
from the tree completely, because there's absolutely *no* case in which it 
would ever be useful (at least I cannot think of one).

Best regards,
Sven

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue10769>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to