aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/status.py
diff options
context:
space:
mode:
authorTom Christie2012-01-21 17:55:25 +0000
committerTom Christie2012-01-21 17:55:25 +0000
commitc94423151b5e135c5d977d63a7092cc4a8ab5de4 (patch)
tree896f6a8e9ae8309d9ec3400573967134077e63f8 /djangorestframework/status.py
parenta99a449c8844e6f55f9a1ecb341701f2719117df (diff)
downloaddjango-rest-framework-c94423151b5e135c5d977d63a7092cc4a8ab5de4.tar.bz2
Drop short status codes.
Diffstat (limited to 'djangorestframework/status.py')
-rw-r--r--djangorestframework/status.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/djangorestframework/status.py b/djangorestframework/status.py
index 93c2a392..9e2ef54c 100644
--- a/djangorestframework/status.py
+++ b/djangorestframework/status.py
@@ -47,46 +47,3 @@ HTTP_502_BAD_GATEWAY = 502
HTTP_503_SERVICE_UNAVAILABLE = 503
HTTP_504_GATEWAY_TIMEOUT = 504
HTTP_505_HTTP_VERSION_NOT_SUPPORTED = 505
-
-# Short format
-CONTINUE = 100
-SWITCHING_PROTOCOLS = 101
-OK = 200
-CREATED = 201
-ACCEPTED = 202
-NON_AUTHORITATIVE_INFORMATION = 203
-NO_CONTENT = 204
-RESET_CONTENT = 205
-PARTIAL_CONTENT = 206
-MULTIPLE_CHOICES = 300
-MOVED_PERMANENTLY = 301
-FOUND = 302
-SEE_OTHER = 303
-NOT_MODIFIED = 304
-USE_PROXY = 305
-RESERVED = 306
-TEMPORARY_REDIRECT = 307
-BAD_REQUEST = 400
-UNAUTHORIZED = 401
-PAYMENT_REQUIRED = 402
-FORBIDDEN = 403
-NOT_FOUND = 404
-METHOD_NOT_ALLOWED = 405
-NOT_ACCEPTABLE = 406
-PROXY_AUTHENTICATION_REQUIRED = 407
-REQUEST_TIMEOUT = 408
-CONFLICT = 409
-GONE = 410
-LENGTH_REQUIRED = 411
-PRECONDITION_FAILED = 412
-REQUEST_ENTITY_TOO_LARGE = 413
-REQUEST_URI_TOO_LONG = 414
-UNSUPPORTED_MEDIA_TYPE = 415
-REQUESTED_RANGE_NOT_SATISFIABLE = 416
-EXPECTATION_FAILED = 417
-INTERNAL_SERVER_ERROR = 500
-NOT_IMPLEMENTED = 501
-BAD_GATEWAY = 502
-SERVICE_UNAVAILABLE = 503
-GATEWAY_TIMEOUT = 504
-HTTP_VERSION_NOT_SUPPORTED = 505