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