Mastering-Python-2e-code_2/CH_11_debugging/T_08_faulthandler_try_catch.py
2022-05-05 18:25:55 +02:00

8 lines
160 B
Python

import ctypes
try:
# Get memory address 0, your kernel shouldn't allow this:
ctypes.string_at(0)
except Exception as e:
print('Got exception:', e)