aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/parsers.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/parsers.py
parent92b5a455da87c1d71d81903ea666daafb6b79725 (diff)
downloaddjango-rest-framework-941742593c50dcb0e1ca426621d107f12c9ee65c.tar.bz2
Remove last bits of ParserMixin
Diffstat (limited to 'djangorestframework/parsers.py')
-rw-r--r--djangorestframework/parsers.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/djangorestframework/parsers.py b/djangorestframework/parsers.py
index 5b236647..11adeb78 100644
--- a/djangorestframework/parsers.py
+++ b/djangorestframework/parsers.py
@@ -24,10 +24,6 @@ try:
except ImportError:
from cgi import parse_qs
-class ParserMixin(object):
- parsers = ()
-
-
class BaseParser(object):