1*be691f3bSpatrickfrom unittest.mock import Mock 2*be691f3bSpatrickimport sys 3*be691f3bSpatrickimport types 4*be691f3bSpatrick 5*be691f3bSpatrick# This package acts as a mock implementation of the native _lldb module so 6*be691f3bSpatrick# that generating the LLDB documentation doesn't actually require building all 7*be691f3bSpatrick# of LLDB. 8*be691f3bSpatrickmodule_name = '_lldb' 9*be691f3bSpatricksys.modules[module_name] = Mock() 10