mirror of
https://github.com/django/django.git
synced 2025-11-17 02:24:22 +00:00
Fixed #4270 -- Don't permit deleting of items from an immutable QueryDict.
Thanks, Gary Wilson. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5187 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
8562216c40
commit
f9982c5c08
2 changed files with 15 additions and 0 deletions
|
|
@ -96,6 +96,12 @@ MultiValueDictKeyError: "Key 'foo' not found in <MultiValueDict: {}>"
|
|||
>>> q['name']
|
||||
'john'
|
||||
|
||||
>>> del q['name']
|
||||
>>> 'name' in q
|
||||
False
|
||||
|
||||
>>> q['name'] = 'john'
|
||||
|
||||
>>> q.get('foo', 'default')
|
||||
'default'
|
||||
|
||||
|
|
@ -367,6 +373,11 @@ AttributeError: This QueryDict instance is immutable
|
|||
>>> q.urlencode()
|
||||
'vote=yes&vote=no'
|
||||
|
||||
>>> del q['vote']
|
||||
Traceback (most recent call last):
|
||||
...
|
||||
AttributeError: This QueryDict instance is immutable
|
||||
|
||||
"""
|
||||
|
||||
from django.http import QueryDict
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue