Skip to content

Commit 41b9d7d

Browse files
committed
Cleanup test of print statements, run formatter
1 parent cee7540 commit 41b9d7d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

lldb/bindings/interface/SBProgressDocstrings.i

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@ Progress can either be deterministic, incrementing up to a known total or non-de
1717
with an unbounded total. Deterministic is better if you know the items of work in advance, but non-deterministic
1818
exposes a way to update a user during a long running process that work is taking place.
1919
20-
For non-deterministic
21-
20+
For all progresses the details provided in the constructor will be sent until an increment detail
21+
is provided. This detail will also continue to be broadcasted on any subsequent update that doesn't
22+
specify a new detail. Some implementations differ on throttling updates and this behavior differs primarily
23+
if the progress is deterministic or non-deterministic. For DAP, non-deterministic update messages have a higher
24+
throttling rate than deterministic ones.
2225
") lldb::SBProgress;
2326

2427
%feature("docstring",

lldb/test/API/tools/lldb-dap/progress/TestDAP_Progress.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ def verify_progress_events(
3232
start_found = True
3333
if "progressUpdate" in event_type:
3434
message = event["body"]["message"]
35-
print(f"Progress update: {message}")
3635
if only_verify_first_update and update_found:
3736
continue
3837
if expected_message is not None:

0 commit comments

Comments
 (0)