I support PEP 326

A.Schmolck a.schmolck at gmx.net
Fri Jan 23 08:10:50 EST 2004


Erik Max Francis <max at alcyone.com> writes:

> Since min(S) and min(*S) behave identically, I submit to you that they
> _should_ be.

They don't. (See bottom for example).

'as






















































>>> min([[1]])
[1]
>>> min(*[[1]])
1



More information about the Python-list mailing list