Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lldb/docs/use/python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,12 @@ decision to go right:
process.Continue()
else:
print "Here is the problem; going right, should go left!"
Just as a reminder, LLDB is going to take this script and wrap it up in a function, like this:


Just as a reminder, LLDB is going to take this script and wrap it up in a function, like this:

::

def some_unique_and_obscure_function_name (frame, bp_loc):
global path
if path[0] == 'R':
Expand Down
Loading