[Lldb-commits] [lldb] r129706 - /lldb/trunk/test/lldbutil.py

Johnny Chen johnny.chen at apple.com
Mon Apr 18 11:32:09 PDT 2011


Author: johnny
Date: Mon Apr 18 13:32:09 2011
New Revision: 129706

URL: http://llvm.org/viewvc/llvm-project?rev=129706&view=rev
Log:
Modify some docstrings.

Modified:
    lldb/trunk/test/lldbutil.py

Modified: lldb/trunk/test/lldbutil.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbutil.py?rev=129706&r1=129705&r2=129706&view=diff
==============================================================================
--- lldb/trunk/test/lldbutil.py (original)
+++ lldb/trunk/test/lldbutil.py Mon Apr 18 13:32:09 2011
@@ -385,7 +385,7 @@
         return output.getvalue()
 
 def GetThreadsStoppedAtBreakpoint (process, bkpt):
-    """ For a stopped process returns the thread stopped at the breakpoint passed in in bkpt"""
+    """ For a stopped process returns the thread stopped at the breakpoint passed in bkpt"""
     stopped_threads = []
     threads = []
 
@@ -403,7 +403,7 @@
     return threads
 
 def ContinueToBreakpoint (process, bkpt):
-    """ Continues the process, when it stops, if there is a thread stopped at bkpt, returns that thread"""
+    """ Continues the process, if it stops, returns the threads stopped at bkpt; otherwise, returns None"""
     process.Continue()
     if process.GetState() != lldb.eStateStopped:
         return None





More information about the lldb-commits mailing list