Message 263360 - Python tracker

Message263360

Author ragreddy
Recipients mark.dickinson, ragreddy, rhettinger, serhiy.storchaka
Date 2016-04-13.21:13:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460582006.37.0.931404363513.issue26743@psf.upfronthosting.co.za>
In-reply-to
Content
Hi, I apologize. I didn't expect a quick reply.
Here are the outputs you requested.

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 math
>>> print math.sqrt(2.0)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: math domain error
>>> print math
<module 'math' from '/usr/lib/python2.7/lib-dynload/math.so'>
>>> import struct
>>> struct.pack('<d', 2.0)
'\x00\x00\x00\x00\x00\x00\x00@'
>>>
History
Date User Action Args
2016-04-13 21:13:26ragreddysetrecipients: + ragreddy, rhettinger, mark.dickinson, serhiy.storchaka
2016-04-13 21:13:26ragreddysetmessageid: <1460582006.37.0.931404363513.issue26743@psf.upfronthosting.co.za>
2016-04-13 21:13:26ragreddylinkissue26743 messages
2016-04-13 21:13:26ragreddycreate