This fixes llvm.org/pr39054
The fix itself is pretty simple:
- Register _lldb as a built-in module during initialization of script interpreter.
- Reverse the order of imports in __init__.py: first try to import by absolute name, which will find the built-in module in the context of lldb (and other hosts that embed liblldb), then try relative import, in case the module is being imported from Python interpreter.