[issue9165] Add math.isfinite()

2010-07-11 Thread Mark Dickinson
Mark Dickinson added the comment: Applied in r82818 (with issue number added to Misc/NEWS; thanks, Eric!). -- resolution: -> accepted stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue9165] Add math.isfinite()

2010-07-05 Thread Eric Smith
Eric Smith added the comment: +1 from me, too. You might want to reference this issue in the Misc/NEWS entry. -- nosy: +eric.smith ___ Python tracker ___ ___

[issue9165] Add math.isfinite()

2010-07-05 Thread Benjamin Peterson
Benjamin Peterson added the comment: Looks good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue9165] Add math.isfinite()

2010-07-05 Thread Mark Dickinson
Changes by Mark Dickinson : Removed file: http://bugs.python.org/file17868/isfinite_v2.patch ___ Python tracker ___ ___ Python-bugs-list mailin

[issue9165] Add math.isfinite()

2010-07-05 Thread Mark Dickinson
Changes by Mark Dickinson : Added file: http://bugs.python.org/file17870/isfinite_v2.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue9165] Add math.isfinite()

2010-07-05 Thread Mark Dickinson
Mark Dickinson added the comment: Version 2 of patch adds cmath.isfinite, and changes doc markup to use ``True`` instead of :const:`True` (thanks Benjamin!). -- Added file: http://bugs.python.org/file17868/isfinite_v2.patch ___ Python tracker

[issue9165] Add math.isfinite()

2010-07-05 Thread Mark Dickinson
Mark Dickinson added the comment: +1. This is natural counterpart to math.isinf and math.isnan. In fact, it's quite surprising to have those two functions available and not math.isfinite. Here's a patch. -- assignee: -> mark.dickinson keywords: +patch nosy: +mark.dickinson stage:

[issue9165] Add math.isfinite()

2010-07-05 Thread Benjamin Peterson
New submission from Benjamin Peterson : It would be equivalent to "not isinf(x) and not isnan(x)". -- components: Extension Modules messages: 109324 nosy: benjamin.peterson priority: low severity: normal status: open title: Add math.isfinite() versions: Python 3.2 __