mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Refs #17235 -- Made MultiPartParser leave request.POST immutable.
This commit is contained in:
parent
183f501540
commit
4a246a02bd
5 changed files with 26 additions and 1 deletions
|
@ -634,6 +634,10 @@ Miscellaneous
|
|||
|
||||
* The undocumented ``django.utils.functional.lazy_property`` is removed.
|
||||
|
||||
* For consistency with non-multipart requests, ``MultiPartParser.parse()`` now
|
||||
leaves ``request.POST`` immutable. If you're modifying that ``QueryDict``,
|
||||
you must now first copy it, e.g. ``request.POST.copy()``.
|
||||
|
||||
.. _deprecated-features-1.11:
|
||||
|
||||
Features deprecated in 1.11
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue