Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/llvm-project/lldb/docs/_lldb/__init__.py
39535 views
1
from unittest.mock import Mock
2
import sys
3
import types
4
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()
10
11