Antoine Pitrou added the comment: 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?' ---------- nosy: +pitrou, skrah _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue15944> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com