[issue15985] round() has wrong argument names

2012-09-20 Thread Chris Jerdonek
Chris Jerdonek added the comment: Thanks for the quick commit, Mark. :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue15985] round() has wrong argument names

2012-09-20 Thread Mark Dickinson
Mark Dickinson added the comment: Fixed. Thanks for the patch! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue15985] round() has wrong argument names

2012-09-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset e4037dd73877 by Mark Dickinson in branch '2.7': Issue 15985: fix round argument names in documentation. Thanks Chris Jerdonek. http://hg.python.org/cpython/rev/e4037dd73877 -- ___ Python tracker

[issue15985] round() has wrong argument names

2012-09-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset eccd94d4ee77 by Mark Dickinson in branch '3.2': Issue 15985: fix round argument names in documentation. Thanks Chris Jerdonek. http://hg.python.org/cpython/rev/eccd94d4ee77 New changeset ad04dd6c07f7 by Mark Dickinson in branch 'default': Issue 159

[issue15985] round() has wrong argument names

2012-09-20 Thread Mark Dickinson
Mark Dickinson added the comment: Looks good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue15985] round() has wrong argument names

2012-09-20 Thread Chris Jerdonek
Chris Jerdonek added the comment: Here is a patch. Also, I checked, and there is already a test for the keyword arguments: http://hg.python.org/cpython/file/dcced3bd22fe/Lib/test/test_builtin.py#l1239 -- keywords: +needs review, patch stage: needs patch -> patch review Added file: htt

[issue15985] round() has wrong argument names

2012-09-20 Thread Mark Dickinson
Mark Dickinson added the comment: A case where fixing the names improves both accuracy *and* readability! -- nosy: +mark.dickinson ___ Python tracker ___

[issue15985] round() has wrong argument names

2012-09-20 Thread Chris Jerdonek
New submission from Chris Jerdonek: The documentation for round() says: round(x[, n]) Return the floating point value x rounded to n digits after the decimal point. If n is omitted, it defaults to zero. Delegates to x.__round__(n). (from http://docs.python.org/dev/library/functions.html#round

[issue15985] round() has wrong argument names

2012-09-20 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py