Issue #24245: Eliminated senseless expect clauses that have no any effect.

Patch by Martin Panter.
This commit is contained in:
Serhiy Storchaka 2015-05-20 16:10:04 +03:00
parent ba9ac5b5c4
commit e98209c2b4
5 changed files with 0 additions and 14 deletions

View file

@ -20,8 +20,6 @@ def _retry_thrice(func, exc, *args, **kwargs):
except exc as e:
last_exc = e
continue
except:
raise
raise last_exc
def _wrap_with_retry_thrice(func, exc):