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 dabeaz, pitrou, skrah
Date 2012-09-14.15:37:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1347637062.17.0.919394373571.issue15944@psf.upfronthosting.co.za>
In-reply-to
Content
You can still read the underlying representation:

>>> d = ctypes.c_double(0.6)
>>> m = memoryview(d)
>>> bytes(m)
b'333333\xe3?'
>>> d.value = 0.7
>>> bytes(m)
b'ffffff\xe6?'
History
Date User Action Args
2012-09-14 15:37:42pitrousetrecipients: + pitrou, skrah, dabeaz
2012-09-14 15:37:42pitrousetmessageid: <1347637062.17.0.919394373571.issue15944@psf.upfronthosting.co.za>
2012-09-14 15:37:41pitroulinkissue15944 messages
2012-09-14 15:37:41pitroucreate