This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mattip
Recipients mattip
Date 2012-04-07.18:43:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333824186.8.0.672108286036.issue14521@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import math
>>> math.copysign(1., float('inf'))
1.0
>>> math.copysign(1., float('-inf'))
-1.0
>>> math.copysign(1., float('nan'))
-1.0
>>> math.copysign(1., float('-nan'))
1.0
>>>
History
Date User Action Args
2012-04-07 18:43:06mattipsetrecipients: + mattip
2012-04-07 18:43:06mattipsetmessageid: <1333824186.8.0.672108286036.issue14521@psf.upfronthosting.co.za>
2012-04-07 18:43:06mattiplinkissue14521 messages
2012-04-07 18:43:06mattipcreate