aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/resource.py
diff options
context:
space:
mode:
authorTom Christie2011-04-11 13:22:54 +0100
committerTom Christie2011-04-11 13:22:54 +0100
commit941742593c50dcb0e1ca426621d107f12c9ee65c (patch)
tree5016b02d47850e2238be30d3301ae5f78575a9ab /djangorestframework/resource.py
parent92b5a455da87c1d71d81903ea666daafb6b79725 (diff)
downloaddjango-rest-framework-941742593c50dcb0e1ca426621d107f12c9ee65c.tar.bz2
Remove last bits of ParserMixin
Diffstat (limited to 'djangorestframework/resource.py')
-rw-r--r--djangorestframework/resource.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/djangorestframework/resource.py b/djangorestframework/resource.py
index 80e5df2a..6ec22073 100644
--- a/djangorestframework/resource.py
+++ b/djangorestframework/resource.py
@@ -3,7 +3,6 @@ from django.views.decorators.csrf import csrf_exempt
from djangorestframework.compat import View
from djangorestframework.emitters import EmitterMixin
-from djangorestframework.parsers import ParserMixin
from djangorestframework.authenticators import AuthenticatorMixin
from djangorestframework.validators import FormValidatorMixin
from djangorestframework.response import Response, ResponseException
@@ -19,7 +18,7 @@ from djangorestframework import emitters, parsers, authenticators, status
__all__ = ['Resource']
-class Resource(EmitterMixin, ParserMixin, AuthenticatorMixin, FormValidatorMixin, RequestMixin, View):
+class Resource(EmitterMixin, AuthenticatorMixin, FormValidatorMixin, RequestMixin, View):
"""Handles incoming requests and maps them to REST operations,
performing authentication, input deserialization, input validation, output serialization."""