Guido van Rossum <gu...@python.org> added the comment:
OK, so I looked into this (sine we can't wait for Serhiy). The problem was probably introduced when Ivan added end lineno/column attributes to parse tree nodes. The offending copy_location() call copies the begin and end locations from the given node (maybegenbeg). But in the problematic case, maybegenbeg is just the left paren in the function call, not the node representing the surrounding () group. But there's a separate argument to ast_for_call(), closepar, that should be used for the end lineno/offset. Looking at the various calls to ast_for_call() in Python/ast.c, we find these: - ast_for_decorator -- passes the open and close parentheses- ast_for_trailer -- passes the open and close parentheses - ast_for_classdef -- passes NULL (because no genexpr allowed here) So instead of calling copy_location() we should manually set the begin and end positions. An alternative would be to add a second node* argument to copy_location(). That would require us to modify all 5 calls to it, but it still feels the better way to go. I'll see if I can produce a PR for that. ---------- nosy: +gvanrossum _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue39235> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com