Skip to content

Commit d13da5f

Browse files
committed
[lldb] Remove lldbconfig module
The lldbconfig module was necessary to run the LLDB test suite against a reproducer. Since this functionality has been removed, the module is no longer necessary.
1 parent cb992f9 commit d13da5f

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

lldb/bindings/python/python.swig

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,8 @@ using namespace lldb;
133133
%include "python-wrapper.swig"
134134

135135
%pythoncode%{
136-
_initialize = True
137-
try:
138-
import lldbconfig
139-
_initialize = lldbconfig.INITIALIZE
140-
except ImportError:
141-
pass
142136
debugger_unique_id = 0
143-
if _initialize:
144-
SBDebugger.Initialize()
137+
SBDebugger.Initialize()
145138
debugger = None
146139
target = None
147140
process = None

lldb/packages/Python/lldbconfig/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)