Message 342641 - Python tracker

Message342641

Author jdemeyer
Recipients Mark.Shannon, jdemeyer, petr.viktorin, serhiy.storchaka, vstinner
Date 2019-05-16.11:41:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1558006914.56.0.564648837562.issue36936@roundup.psfhosted.org>
In-reply-to
Content
Adding that assertion allows future optimizations and simplifications: with the assertion, "keyword arguments are passed" becomes equivalent to

  kwnames != NULL

instead of

  kwnames != NULL && PyTuple_GET_SIZE(kwnames) > 0

This may not be useful right now, but it will become more useful when implementing PEP 590.
History
Date User Action Args
2019-05-16 11:41:54jdemeyersetrecipients: + jdemeyer, vstinner, petr.viktorin, Mark.Shannon, serhiy.storchaka
2019-05-16 11:41:54jdemeyersetmessageid: <1558006914.56.0.564648837562.issue36936@roundup.psfhosted.org>
2019-05-16 11:41:54jdemeyerlinkissue36936 messages
2019-05-16 11:41:54jdemeyercreate