[Lldb-commits] [lldb] 9178a17 - Update python.rst (#140333)
via lldb-commits
lldb-commits at lists.llvm.org
Fri May 16 19:17:07 PDT 2025
Author: LauraElanorJones
Date: 2025-05-16T19:17:03-07:00
New Revision: 9178a1720667807aa46dcfc3069bad7e8fef5f2e
URL: https://github.com/llvm/llvm-project/commit/9178a1720667807aa46dcfc3069bad7e8fef5f2e
DIFF: https://github.com/llvm/llvm-project/commit/9178a1720667807aa46dcfc3069bad7e8fef5f2e.diff
LOG: Update python.rst (#140333)
Fix code block formatting in section "The Decision Point Breakpoint
Commands"
Added:
Modified:
lldb/docs/use/python.rst
Removed:
################################################################################
diff --git a/lldb/docs/use/python.rst b/lldb/docs/use/python.rst
index d9c29d95708c1..3a919f2a8cdb1 100644
--- a/lldb/docs/use/python.rst
+++ b/lldb/docs/use/python.rst
@@ -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':
More information about the lldb-commits
mailing list