xref: /freebsd-src/contrib/llvm-project/lldb/docs/_lldb/__init__.py (revision 7d0873ebb83b19ba1e8a89e679470d885efe12e3)
1from unittest.mock import Mock
2import sys
3import types
4
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.
8module_name = "_lldb"
9sys.modules[module_name] = Mock()
10