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 ragreddy
Recipients mark.dickinson, ragreddy, rhettinger, serhiy.storchaka, vstinner
Date 2016-04-14.05:43:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460612595.59.0.787181229771.issue26743@psf.upfronthosting.co.za>
In-reply-to
Content
Serhiy,

root@host:~# python
Python 2.7.3 (default, Apr  3 2016, 22:31:30)
[GCC 4.8.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import struct
>>> struct.pack('d', 2.0)
'@\x00\x00\x00\x00\x00\x00\x00'
>>> struct.pack('d', float(2))
'@\x00\x00\x00\x00\x00\x00\x00'
>>>
History
Date User Action Args
2016-04-14 05:43:15ragreddysetrecipients: + ragreddy, rhettinger, mark.dickinson, vstinner, serhiy.storchaka
2016-04-14 05:43:15ragreddysetmessageid: <1460612595.59.0.787181229771.issue26743@psf.upfronthosting.co.za>
2016-04-14 05:43:15ragreddylinkissue26743 messages
2016-04-14 05:43:15ragreddycreate