1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Removed many uses of bare "except:", which were either going to a) silence real issues, or b) were impossible to hit.

This commit is contained in:
Alex Gaynor
2012-09-07 15:06:23 -04:00
parent 257c4011cb
commit 335a9f9cf1
10 changed files with 31 additions and 48 deletions

View File

@@ -17,10 +17,8 @@ class HandlerTests(unittest.TestCase):
# Try running the handler, it will fail in load_middleware
handler = WSGIHandler()
self.assertEqual(handler.initLock.locked(), False)
try:
with self.assertRaises(Exception):
handler(None, None)
except:
pass
self.assertEqual(handler.initLock.locked(), False)
# Reset settings
settings.MIDDLEWARE_CLASSES = old_middleware_classes