Minmax function alongside min and max

@steven.daprano: Ok, let me show you an example:

>>> max((float("nan"), 0))
nan
>>> max((0, float("nan")))
0

It’s the same sequence, the only difference is the position of their items. This is a bug. Point.

1 Like