aboutsummaryrefslogtreecommitdiff
path: root/lldb/docs/_lldb/__init__.py
blob: 0c3cfe89a8a4c261fa6a5fe1b1d0305b30c3e9d9 (plain)
1
2
3
4
5
6
7
8
9
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()