brintos

brintos / llvm-project-archived public Read only

0
0
Text · 277 B · 0c3cfe8 Raw
10 lines · python
1from unittest.mock import Mock2import sys3import types4 5# This package acts as a mock implementation of the native _lldb module so6# that generating the LLDB documentation doesn't actually require building all7# of LLDB.8module_name = "_lldb"9sys.modules[module_name] = Mock()10