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 pitrou
Recipients mark.dickinson, pitrou, steve.dower, tim.golden, zach.ware
Date 2014-10-09.19:19:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412882363.43.0.416785697629.issue22590@psf.upfronthosting.co.za>
In-reply-to
Content
Z:\>c:\Python27\python.exe
Python 2.7.8 (default, Jun 30 2014, 16:03:49) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> import math
>>> math.copysign(0.0, float("nan"))
-0.0
>>> ^Z

Z:\>c:\Python34\python.exe
Python 3.4.0 (v3.4.0:04f714765c13, Mar 16 2014, 19:24:06) [MSC v.1600 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import math
>>> math.copysign(0.0, float("nan"))
0.0
>>> ^Z
History
Date User Action Args
2014-10-09 19:19:23pitrousetrecipients: + pitrou, mark.dickinson, tim.golden, zach.ware, steve.dower
2014-10-09 19:19:23pitrousetmessageid: <1412882363.43.0.416785697629.issue22590@psf.upfronthosting.co.za>
2014-10-09 19:19:23pitroulinkissue22590 messages
2014-10-09 19:19:23pitroucreate