Re: keyword argument for min/max

2004-11-30 Thread Steven Bethard
Steven Bethard wrote: So I've been playing around with trying to add a keyword argument to min and max that works similarly to the one for sorted. It wasn't too hard actually, but it does raise a few questions about proper handling of keyword arguments. Sorry to reply to my own post, but I thou

keyword argument for min/max

2004-11-29 Thread Steven Bethard
So I've been playing around with trying to add a keyword argument to min and max that works similarly to the one for sorted. It wasn't too hard actually, but it does raise a few questions about proper handling of keyword arguments. Currently, help(max) gives: max(...) max(sequence) -> val