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 vstinner
Recipients amaury.forgeotdarc, belopolsky, meador.inge, mwtoews, vstinner
Date 2015-07-25.09:49:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1437817791.37.0.51239256466.issue24714@psf.upfronthosting.co.za>
In-reply-to
Content
ctypes gives you a raw access to the memory. If you try to read unmapped memory areas, the program may or may not crash. Usually, you get a segmentation fault.

https://en.wikipedia.org/wiki/Segmentation_fault

Python doesn't provide a portable behaviour on segmentation faults.

Note: You can use faulthandler to get the backtrace on segmentation fault.
History
Date User Action Args
2015-07-25 09:49:51vstinnersetrecipients: + vstinner, amaury.forgeotdarc, belopolsky, mwtoews, meador.inge
2015-07-25 09:49:51vstinnersetmessageid: <1437817791.37.0.51239256466.issue24714@psf.upfronthosting.co.za>
2015-07-25 09:49:51vstinnerlinkissue24714 messages
2015-07-25 09:49:51vstinnercreate