Message170480
| 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:42 | pitrou | set | recipients: + pitrou, skrah, dabeaz |
| 2012-09-14 15:37:42 | pitrou | set | messageid: <1347637062.17.0.919394373571.issue15944@psf.upfronthosting.co.za> |
| 2012-09-14 15:37:41 | pitrou | link | issue15944 messages |
| 2012-09-14 15:37:41 | pitrou | create | |