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 iritkatriel
Recipients Joshua.Landau, NeilGirdhar, SilentGhost, iritkatriel, r.david.murray, terry.reedy
Date 2021-06-16.15:07:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1623856067.91.0.64959723897.issue23316@roundup.psfhosted.org>
In-reply-to
Content
I don't think this is true anymore:

>>> def a(): 
...   print('a')
...   return (1,2)
... 
>>> def b():
...   print('b')
...   return (3,4)
... 
>>> def f(*args, b=None):
...   print('f')
... 
>>> f(*a(), b=b())
a
b
f
>>>
History
Date User Action Args
2021-06-16 15:07:47iritkatrielsetrecipients: + iritkatriel, terry.reedy, r.david.murray, SilentGhost, Joshua.Landau, NeilGirdhar
2021-06-16 15:07:47iritkatrielsetmessageid: <1623856067.91.0.64959723897.issue23316@roundup.psfhosted.org>
2021-06-16 15:07:47iritkatriellinkissue23316 messages
2021-06-16 15:07:47iritkatrielcreate