mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-11 04:07:39 +03:00
#75 remove except statements which are overly broad in the exception they catch
This commit is contained in:
parent
be11336dd9
commit
46e4ba258f
|
@ -246,14 +246,14 @@ class DocumentingTemplateRenderer(BaseRenderer):
|
|||
form_instance = view.get_bound_form(view.response.cleaned_content, method=method)
|
||||
if form_instance and not form_instance.is_valid():
|
||||
form_instance = None
|
||||
except:
|
||||
except Exception:
|
||||
form_instance = None
|
||||
|
||||
# If we still don't have a form instance then try to get an unbound form
|
||||
if not form_instance:
|
||||
try:
|
||||
form_instance = view.get_bound_form(method=method)
|
||||
except:
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
# If we still don't have a form instance then try to get an unbound form which can tunnel arbitrary content types
|
||||
|
|
|
@ -43,7 +43,7 @@ def url_resolves(url):
|
|||
"""
|
||||
try:
|
||||
resolve(url)
|
||||
except:
|
||||
except Exception:
|
||||
return False
|
||||
return True
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ def get_breadcrumbs(url):
|
|||
|
||||
try:
|
||||
(view, unused_args, unused_kwargs) = resolve(url)
|
||||
except:
|
||||
except Exception:
|
||||
pass
|
||||
else:
|
||||
# Check if this is a REST framework view, and if so add it to the breadcrumbs
|
||||
|
|
|
@ -109,7 +109,7 @@ class _MediaType(object):
|
|||
# """
|
||||
# try:
|
||||
# return Decimal(self.params.get('q', '1.0'))
|
||||
# except:
|
||||
# except Exception:
|
||||
# return Decimal(0)
|
||||
|
||||
#def score(self):
|
||||
|
|
|
@ -18,7 +18,7 @@ class TestPygmentsExample(TestCase):
|
|||
def tearDown(self):
|
||||
try:
|
||||
shutil.rmtree(self.temp_dir)
|
||||
except:
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
def test_get_to_root(self):
|
||||
|
|
Loading…
Reference in New Issue
Block a user