Merge "bare excepts, as is proper"
This commit is contained in:
commit
fa8eef4b3f
@ -150,10 +150,7 @@ class MemcacheConnPool(Pool):
|
||||
if self.current_size <= self.max_size:
|
||||
try:
|
||||
created = self.create()
|
||||
# This was really supposed to be "except:" but ran afoul of the
|
||||
# H201 check, which does not implement the "noqa" exception. Once
|
||||
# that's fixed, the except here can be changed to "except: # noqa"
|
||||
except (Exception, BaseException):
|
||||
except: # noqa
|
||||
self.current_size -= 1
|
||||
raise
|
||||
return created
|
||||
|
@ -444,11 +444,7 @@ class TestMemcached(unittest.TestCase):
|
||||
while not got:
|
||||
try:
|
||||
got = pool.get()
|
||||
# This was really supposed to be "except:" but ran afoul
|
||||
# of the H201 check, which does not implement the "noqa"
|
||||
# exception. Once that's fixed, the except here can be
|
||||
# changed to "except: # noqa"
|
||||
except (Exception, BaseException):
|
||||
except: # noqa
|
||||
pass
|
||||
pool.put(got)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user