On Mon, 11 Apr 2022 at 03:57, malmiteria <[email protected]> wrote: > > David Mertz, Ph.D. writes: > > Can you think of ANY context in Python in which the order of items in > > parentheses isn't important?! > kwargs >
Since Python 3.6, order of kwargs is preserved, and some functions do care about it (although only in minor ways, like the display order of attributes). ChrisA _______________________________________________ Python-ideas mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/EBJARDGYVZTIMIVMH5543YZOUMN7VQBD/ Code of Conduct: http://python.org/psf/codeofconduct/
