<div dir="ltr">I'm using vscode and CodeLLDB to debug rust code.<div><br></div><div>```text</div><div>Internal debugger error:<br>Traceback (most recent call last):<br>  File "/home/joey/.vscode/extensions/vadimcn.vscode-lldb-1.2.3/adapter/debugsession.py", line 1366, in handle_message<br>    result = handler(args)<br>  File "/home/joey/.vscode/extensions/vadimcn.vscode-lldb-1.2.3/adapter/debugsession.py", line 426, in DEBUG_setBreakpoints<br>    result = self.set_source_breakpoints(file_bps, req_bps, file_id)<br>  File "/home/joey/.vscode/extensions/vadimcn.vscode-lldb-1.2.3/adapter/debugsession.py", line 447, in set_source_breakpoints<br>    for bp_loc in bp:<br>TypeError: 'SBBreakpoint' object is not iterable<br></div><div>```</div><div><br></div><div>I checked my `/usr/lib/python2.7/site-packages/lldb/__init__.py` file, the `SBBreakpoint` class lack a `__iter__` method, but In the document at <a href="https://lldb.llvm.org/python_reference/index.html">https://lldb.llvm.org/python_reference/index.html</a> `SBBreakpoint` class has a `__iter__` method.</div><div><br></div><div>I guess it may be a bug that when generating the python binding for lldb 8.0.1 some methods are missing, can someone confirm this bug? thanks!</div></div>