[issue29433] any, all and sum should accept variadic args

Steven D'Aprano report at bugs.python.org
Fri Feb 3 11:10:32 EST 2017


Steven D'Aprano added the comment:

> Do you think I should send a mail to the ideas list?

Personally, I don't think so. You want to write any(a, b, c, d), 
but you can get the same effect now by writing any([a, b, c, d]).
There is unlikely to be any significant performance difference.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue29433>
_______________________________________


More information about the Python-bugs-list mailing list