bolt/deps/llvm-18.1.8/lldb/docs/_lldb/__init__.py

10 lines
277 B
Python
Raw Normal View History

2025-02-14 19:21:04 +01:00
from unittest.mock import Mock
import sys
import types
# This package acts as a mock implementation of the native _lldb module so
# that generating the LLDB documentation doesn't actually require building all
# of LLDB.
module_name = "_lldb"
sys.modules[module_name] = Mock()