[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / lldb / docs / _lldb / __init__.py
blob0c3cfe89a8a4c261fa6a5fe1b1d0305b30c3e9d9
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()