summaryrefslogtreecommitdiff
path: root/smart_future.py
diff options
context:
space:
mode:
Diffstat (limited to 'smart_future.py')
-rw-r--r--smart_future.py2
1 files changed, 0 insertions, 2 deletions
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: