6 def watchpoint_command(frame
, wp
, dict):
9 print("I stopped the first time")
10 frame
.EvaluateExpression("cookie = 888")
14 print("I stopped the second time, but with no return")
15 frame
.EvaluateExpression("cookie = 666")
18 print("I stopped the %d time" % (num_hits
))
19 frame
.EvaluateExpression("cookie = 999")
20 return False # This cause the process to continue.