[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / lldb / docs / _lldb / __init__.py
blob084252e46e5dbde40b1d11a4430a6908f3665f46
1 from unittest.mock import Mock
2 import sys
3 import types
5 # This package acts as a mock implementation of the native _lldb module so
6 # that generating the LLDB documentation doesn't actually require building all
7 # of LLDB.
8 module_name = '_lldb'
9 sys.modules[module_name] = Mock()