aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/request.py
diff options
context:
space:
mode:
Diffstat (limited to 'rest_framework/request.py')
-rw-r--r--rest_framework/request.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/rest_framework/request.py b/rest_framework/request.py
index 3ce93181..3725b3c9 100644
--- a/rest_framework/request.py
+++ b/rest_framework/request.py
@@ -225,7 +225,6 @@ class Request(object):
if (self._METHOD_PARAM and
self._METHOD_PARAM in self._data):
self._method = self._data[self._METHOD_PARAM].upper()
- self._data.pop(self._METHOD_PARAM)
# Content overloading - modify the content type, and force re-parse.
if (self._CONTENT_PARAM and