This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pablogsal
Recipients blarsen, gvanrossum, pablogsal
Date 2020-09-03.10:46:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
I think I have the problem. The problem is that the asdl_seq that is b is filled with KeywordOrStarred* not with expr_ty.

We need to do:

KeywordOrStarred* last = asdl_seq_GET(b, asdl_seq_LEN(b)-1);

return _Py_Call(_PyPegen_dummy_name(p), args, keywords, EXTRA_EXPR(first, last->element));
History
Date User Action Args
2020-09-03 10:46:42pablogsalsetrecipients: + pablogsal, gvanrossum, blarsen
2020-09-03 10:46:42pablogsalsetmessageid: <[email protected]>
2020-09-03 10:46:42pablogsallinkissue41697 messages
2020-09-03 10:46:42pablogsalcreate