aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/mixins.py
diff options
context:
space:
mode:
authorTom Christie2011-05-19 08:36:55 +0100
committerTom Christie2011-05-19 08:36:55 +0100
commit8c3280f9c0d73c4e2536f1d757ad457b4a8f1de7 (patch)
treebbcc27d1187e98c179342e0a7c75084d0c2d7934 /djangorestframework/mixins.py
parent49d4e50342cd3a6e2dce9f61d379cb54a0c1c6b5 (diff)
downloaddjango-rest-framework-8c3280f9c0d73c4e2536f1d757ad457b4a8f1de7.tar.bz2
data flattening needs to go into resource
Diffstat (limited to 'djangorestframework/mixins.py')
-rw-r--r--djangorestframework/mixins.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/djangorestframework/mixins.py b/djangorestframework/mixins.py
index e101b788..3b2f7242 100644
--- a/djangorestframework/mixins.py
+++ b/djangorestframework/mixins.py
@@ -26,7 +26,7 @@ __all__ = (
'ResponseMixin',
'AuthMixin',
'ResourceMixin',
- #
+ # Reverse URL lookup behavior
'InstanceMixin',
# Model behavior mixins
'ReadModelMixin',
@@ -360,7 +360,6 @@ class AuthMixin(object):
"""
The set of authentication types that this view can handle.
-
Should be a tuple/list of classes as described in the ``authentication`` module.
"""
authentication = ()