diff options
| author | Scott Gasch <[email protected]> | 2022-06-02 17:56:29 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-06-02 17:56:29 -0700 |
| commit | a9bdfd8fc9f84b7b2c09a57cd12ba32259e84d1c (patch) | |
| tree | ac1c57cf1cc4009b1c19b045d61309486233a398 /smart_future.py | |
| parent | aacfe10026ba44cf1ef77458ff6f4f2c042b12fc (diff) | |
Hammer on that run_tests.py thing again.
Diffstat (limited to 'smart_future.py')
| -rw-r--r-- | smart_future.py | 2 |
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: |
