xref: /freebsd/contrib/llvm-project/lldb/docs/_lldb/__init__.py (revision 06c3fb2749bda94cb5201f81ffdb8fa6c3161b2e)
1e8d8bef9SDimitry Andricfrom unittest.mock import Mock
2e8d8bef9SDimitry Andricimport sys
3e8d8bef9SDimitry Andricimport types
4e8d8bef9SDimitry Andric
5e8d8bef9SDimitry Andric# This package acts as a mock implementation of the native _lldb module so
6e8d8bef9SDimitry Andric# that generating the LLDB documentation doesn't actually require building all
7e8d8bef9SDimitry Andric# of LLDB.
8*06c3fb27SDimitry Andricmodule_name = "_lldb"
9e8d8bef9SDimitry Andricsys.modules[module_name] = Mock()
10