aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/mixins.py
diff options
context:
space:
mode:
authorSébastien Piquemal2011-07-06 14:05:57 +0300
committerSébastien Piquemal2011-07-06 14:05:57 +0300
commite53c3cd4171b7aafecc637b762ee5ac7166f4a00 (patch)
treea096ec7b9d706d5b0a76aec91a3f76671eb2e10d /djangorestframework/mixins.py
parent3161475562c3a529389657f21813f91864b0787a (diff)
downloaddjango-rest-framework-e53c3cd4171b7aafecc637b762ee5ac7166f4a00.tar.bz2
now cleans data from parameters used for overloads
Diffstat (limited to 'djangorestframework/mixins.py')
-rw-r--r--djangorestframework/mixins.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/djangorestframework/mixins.py b/djangorestframework/mixins.py
index b1ba0596..5cec2580 100644
--- a/djangorestframework/mixins.py
+++ b/djangorestframework/mixins.py
@@ -161,17 +161,18 @@ class RequestMixin(object):
return
# At this point we're committed to parsing the request as form data.
- self._data = data = self.request.POST
+ self._data = data = self.request.POST.copy()
self._files = self.request.FILES
# Method overloading - change the method and remove the param from the content.
if self._METHOD_PARAM in data:
- self._method = data[self._METHOD_PARAM].upper()
+ # NOTE: unlike `get`, `pop` on a `QueryDict` seems to return a list of values.
+ self._method = self._data.pop(self._METHOD_PARAM)[0].upper()
# Content overloading - modify the content type, and re-parse.
if self._CONTENT_PARAM in data and self._CONTENTTYPE_PARAM in data:
- self._content_type = data[self._CONTENTTYPE_PARAM]
- stream = StringIO(data[self._CONTENT_PARAM])
+ self._content_type = self._data.pop(self._CONTENTTYPE_PARAM)[0]
+ stream = StringIO(self._data.pop(self._CONTENT_PARAM)[0])
(self._data, self._files) = self._parse(stream, self._content_type)