diff options
| author | Vinay Karanam <vinayinvicible@gmail.com> | 2016-11-16 18:52:38 +0530 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-12-07 08:28:46 -0500 |
| commit | 4a246a02bdcbc13b15480c014f51cb0682af7c1e (patch) | |
| tree | eebd27f89e806db66f5344b63d63c574578b5697 /django/http | |
| parent | 183f5015408ffe0d3a22203ddaf7a3a56da025fd (diff) | |
Refs #17235 -- Made MultiPartParser leave request.POST immutable.
Diffstat (limited to 'django/http')
| -rw-r--r-- | django/http/multipartparser.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/http/multipartparser.py b/django/http/multipartparser.py index 87d80bdde5..616185f021 100644 --- a/django/http/multipartparser.py +++ b/django/http/multipartparser.py @@ -289,6 +289,7 @@ class MultiPartParser(object): if retval: break + self._post._mutable = False return self._post, self._files def handle_file_complete(self, old_field_name, counters): |
