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 BTaskaya, iritkatriel, metaxm, pablogsal, serhiy.storchaka
Date 2021-08-16.23:05:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1629155152.39.0.00127563363706.issue34882@roundup.psfhosted.org>
In-reply-to
Content
This is not a bug, check the thread that Serhiy attached. The grammar is, in principle, correct. For instance, you can do:

def f(a,b,c):

    pass
def wrapper(*args, **kw):
    return f(c=1, *args, **kw)

wrapper(2,b=2)

And you don't want that to be a syntax error.
History
Date User Action Args
2021-08-16 23:05:52pablogsalsetrecipients: + pablogsal, serhiy.storchaka, metaxm, BTaskaya, iritkatriel
2021-08-16 23:05:52pablogsalsetmessageid: <1629155152.39.0.00127563363706.issue34882@roundup.psfhosted.org>
2021-08-16 23:05:52pablogsallinkissue34882 messages
2021-08-16 23:05:52pablogsalcreate