Nicolas Rolin wrote:

grouping(((len(word), word) for word in words))

That actually has one more level of parens than are needed,
you can just write

   grouping((len(word), word) for word in words)

--
Greg
_______________________________________________
Python-ideas mailing list
Python-ideas@python.org
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to