[issue20620] Update the min()/max() docs for the new default argument

2014-05-19 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20620] Update the min()/max() docs for the new default argument

2014-05-19 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks for the patch. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue20620] Update the min()/max() docs for the new default argument

2014-05-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset b60258f4499c by Raymond Hettinger in branch '3.4': Issue 20620: Update the min()/max() docs for the new default argument. http://hg.python.org/cpython/rev/b60258f4499c -- nosy: +python-dev ___ Python trac

[issue20620] Update the min()/max() docs for the new default argument

2014-05-18 Thread Berker Peksag
Changes by Berker Peksag : Removed file: http://bugs.python.org/file34081/issue20620.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue20620] Update the min()/max() docs for the new default argument

2014-05-18 Thread Berker Peksag
Berker Peksag added the comment: Rebased patch. -- versions: +Python 3.5 Added file: http://bugs.python.org/file35291/issue20620_v3.diff ___ Python tracker ___ __

[issue20620] Update the min()/max() docs for the new default argument

2014-02-27 Thread Berker Peksag
Berker Peksag added the comment: Updated patch adressing Larry's comment. I also fixed a typo in the max() documentation. Thanks! -- stage: -> patch review Added file: http://bugs.python.org/file34248/issue20620_v2.diff ___ Python tracker

[issue20620] Update the min()/max() docs for the new default argument

2014-02-17 Thread Larry Hastings
Larry Hastings added the comment: key and default are keyword-only arguments, the signature should have a '*'. -- ___ Python tracker ___ _

[issue20620] Update the min()/max() docs for the new default argument

2014-02-15 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue20620] Update the min()/max() docs for the new default argument

2014-02-14 Thread Berker Peksag
Berker Peksag added the comment: Here's a patch to update the min() and max() documentations. -- keywords: +patch nosy: +berker.peksag Added file: http://bugs.python.org/file34081/issue20620.diff ___ Python tracker

[issue20620] Update the min()/max() docs for the new default argument

2014-02-13 Thread Yury Selivanov
Changes by Yury Selivanov : -- nosy: +larry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue20620] Update the min()/max() docs for the new default argument

2014-02-13 Thread Raymond Hettinger
New submission from Raymond Hettinger: There is a new "default" argument for min() and max(): >>> min([], default=10) 10 The new argument is not currently shown by help(): >>> help(min) Help on built-in function min in module builtins: min(...) min(iterable[, key=f