aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/permissions.py
diff options
context:
space:
mode:
authorTom Christie2012-09-20 13:22:07 +0100
committerTom Christie2012-09-20 13:22:07 +0100
commit7efc6e820580fde5a38cbee5cec05cbc87ce36e4 (patch)
tree2c362a631ed182440f6fcae1839ba83323530aa5 /rest_framework/permissions.py
parent87dae4d8549c02fa9a57adb3bb876d249dae1f79 (diff)
downloaddjango-rest-framework-7efc6e820580fde5a38cbee5cec05cbc87ce36e4.tar.bz2
Remove dumbass __all__ variables
Diffstat (limited to 'rest_framework/permissions.py')
-rw-r--r--rest_framework/permissions.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/rest_framework/permissions.py b/rest_framework/permissions.py
index 3a669822..51837a01 100644
--- a/rest_framework/permissions.py
+++ b/rest_framework/permissions.py
@@ -5,15 +5,6 @@ for checking if a request passes a certain set of constraints.
Permission behavior is provided by mixing the :class:`mixins.PermissionsMixin` class into a :class:`View` class.
"""
-__all__ = (
- 'BasePermission',
- 'FullAnonAccess',
- 'IsAuthenticated',
- 'IsAdminUser',
- 'IsUserOrIsAnonReadOnly',
- 'PerUserThrottling',
- 'PerViewThrottling',
-)
SAFE_METHODS = ['GET', 'HEAD', 'OPTIONS']