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 kwutge
Recipients kwutge
Date 2021-07-18.21:27:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1626643625.31.0.374965522349.issue44670@roundup.psfhosted.org>
In-reply-to
Content
def func(a,b,c , *args , **kwargs):
    print(a)
    print(args)
    print(kwargs)

func(2,3,4,5,Carlson=240,Shehroz="maladiss")

# print(args) showing (5,). NEED TO FIX. python 3.9.6
History
Date User Action Args
2021-07-18 21:27:05kwutgesetrecipients: + kwutge
2021-07-18 21:27:05kwutgesetmessageid: <1626643625.31.0.374965522349.issue44670@roundup.psfhosted.org>
2021-07-18 21:27:05kwutgelinkissue44670 messages
2021-07-18 21:27:05kwutgecreate