From a9bdfd8fc9f84b7b2c09a57cd12ba32259e84d1c Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Thu, 2 Jun 2022 17:56:29 -0700 Subject: Hammer on that run_tests.py thing again. --- smart_future.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'smart_future.py') diff --git a/smart_future.py b/smart_future.py index 86f1b1c..625c3ed 100644 --- a/smart_future.py +++ b/smart_future.py @@ -58,7 +58,6 @@ def wait_any( smart_future_by_real_future[x.wrapped_future] = x while len(completed_futures) != len(real_futures): - print("TOP...") try: newly_completed_futures = concurrent.futures.as_completed(real_futures, timeout=timeout) for f in newly_completed_futures: @@ -75,7 +74,6 @@ def wait_any( raise exception yield smart_future_by_real_future[f] except TimeoutError: - print(f"HERE!!! {len(completed_futures)} / {len(real_futures)}.") if callback is not None: callback() if callback is not None: -- cgit v1.3