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 Kodiologist
Recipients Kodiologist
Date 2020-05-30.20:07:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1590869229.29.0.66661660878.issue40830@roundup.psfhosted.org>
In-reply-to
Content
On Python 3.8.2, the below program runs without errors. On Python 3.9.0b1, it raises "TypeError: 'tuple' object is not callable" for the last line.

d1 = {'a': 1}
d2 = {'c': 3}
def fun(a, b, c):
    return a, b, c
print(fun(**d1, b='b', **d2))
History
Date User Action Args
2020-05-30 20:07:09Kodiologistsetrecipients: + Kodiologist
2020-05-30 20:07:09Kodiologistsetmessageid: <1590869229.29.0.66661660878.issue40830@roundup.psfhosted.org>
2020-05-30 20:07:09Kodiologistlinkissue40830 messages
2020-05-30 20:07:09Kodiologistcreate