From 0bc9d3ae0d25844b4f5c924d869813ae51249b33 Mon Sep 17 00:00:00 2001 From: "tom christie tom@tomchristie.com" Date: Thu, 27 Jan 2011 21:46:47 +0000 Subject: [PATCH] Minor cleanup on Resource --- flywheel/resource.py | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/flywheel/resource.py b/flywheel/resource.py index cc566752b..677bdfce4 100644 --- a/flywheel/resource.py +++ b/flywheel/resource.py @@ -11,15 +11,8 @@ import re # TODO: Figure how out references and named urls need to work nicely # TODO: POST on existing 404 URL, PUT on existing 404 URL # -# NEXT: Validators to become generic, forms to move out of Resource into FormValidator -# NEXT: Permissions to become generic, UserAllowed, Throttling # NEXT: Exceptions on func() -> 500, tracebacks emitted if settings.DEBUG -# NEXT: Caching cleverness -# NEXT: Test non-existent fields on ModelResources # -# FUTURE: Erroring on read-only fields - -# Documentation, Release __all__ = ['Resource'] @@ -69,13 +62,7 @@ class Resource(object): """Make the class callable so it can be used as a Django view.""" self = object.__new__(cls) self.__init__(request) - # TODO: Remove this debugging code - try: - return self._handle_request(request, *args, **kwargs) - except: - import traceback - traceback.print_exc() - raise + return self._handle_request(request, *args, **kwargs) def __init__(self, request):