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 jcea
Recipients FazJaxton, jcea
Date 2014-06-18.02:48:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403059705.03.0.178699700178.issue21797@psf.upfronthosting.co.za>
In-reply-to
Content
You could even use "ctypes" to access the underlining "mmap" OS syscall. But accessing individual bytes using native python is not guaranteed to work because python is too high level for that. For instance, it could read 64 bits (a word) to only use 8 at the end.

I recommend you to write a tiny C module or investigate "ctypes"/"CFFI" pointer access to a native mmap-ed area.

Good luck.
History
Date User Action Args
2014-06-18 02:48:25jceasetrecipients: + jcea, FazJaxton
2014-06-18 02:48:25jceasetmessageid: <1403059705.03.0.178699700178.issue21797@psf.upfronthosting.co.za>
2014-06-18 02:48:25jcealinkissue21797 messages
2014-06-18 02:48:24jceacreate