2005-11-30 12:08:46 +08:00
|
|
|
"""
|
|
|
|
###################
|
|
|
|
# Empty QueryDict #
|
|
|
|
###################
|
|
|
|
|
|
|
|
>>> q = QueryDict('')
|
|
|
|
|
|
|
|
>>> q['foo']
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
2007-09-20 23:51:19 +08:00
|
|
|
MultiValueDictKeyError: "Key 'foo' not found in <QueryDict: {}>"
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q['something'] = 'bar'
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.get('foo', 'default')
|
|
|
|
'default'
|
|
|
|
|
|
|
|
>>> q.getlist('foo')
|
|
|
|
[]
|
|
|
|
|
|
|
|
>>> q.setlist('foo', ['bar', 'baz'])
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.appendlist('foo', ['bar'])
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.has_key('foo')
|
|
|
|
False
|
|
|
|
|
2007-04-26 21:30:48 +08:00
|
|
|
>>> 'foo' in q
|
|
|
|
False
|
|
|
|
|
2005-11-30 12:08:46 +08:00
|
|
|
>>> q.items()
|
|
|
|
[]
|
|
|
|
|
|
|
|
>>> q.lists()
|
|
|
|
[]
|
|
|
|
|
|
|
|
>>> q.keys()
|
|
|
|
[]
|
|
|
|
|
|
|
|
>>> q.values()
|
|
|
|
[]
|
|
|
|
|
|
|
|
>>> len(q)
|
|
|
|
0
|
|
|
|
|
|
|
|
>>> q.update({'foo': 'bar'})
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.pop('foo')
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.popitem()
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.clear()
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.setdefault('foo', 'bar')
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.urlencode()
|
|
|
|
''
|
|
|
|
|
|
|
|
###################################
|
|
|
|
# Mutable copy of empty QueryDict #
|
|
|
|
###################################
|
|
|
|
|
|
|
|
>>> q = q.copy()
|
|
|
|
|
|
|
|
>>> q['foo']
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
2007-09-20 23:51:19 +08:00
|
|
|
MultiValueDictKeyError: "Key 'foo' not found in <QueryDict: {}>"
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q['name'] = 'john'
|
|
|
|
|
|
|
|
>>> q['name']
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
u'john'
|
2005-11-30 12:08:46 +08:00
|
|
|
|
2007-05-11 16:22:06 +08:00
|
|
|
>>> del q['name']
|
|
|
|
>>> 'name' in q
|
|
|
|
False
|
|
|
|
|
|
|
|
>>> q['name'] = 'john'
|
|
|
|
|
2005-11-30 12:08:46 +08:00
|
|
|
>>> q.get('foo', 'default')
|
|
|
|
'default'
|
|
|
|
|
|
|
|
>>> q.get('name', 'default')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
u'john'
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.getlist('name')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'john']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.getlist('foo')
|
|
|
|
[]
|
|
|
|
|
|
|
|
>>> q.setlist('foo', ['bar', 'baz'])
|
|
|
|
|
|
|
|
>>> q.get('foo', 'default')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
u'baz'
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.getlist('foo')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'bar', u'baz']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.appendlist('foo', 'another')
|
|
|
|
|
|
|
|
>>> q.getlist('foo')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'bar', u'baz', u'another']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q['foo']
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
u'another'
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.has_key('foo')
|
|
|
|
True
|
|
|
|
|
2007-04-26 21:30:48 +08:00
|
|
|
>>> 'foo' in q
|
|
|
|
True
|
|
|
|
|
2005-11-30 12:08:46 +08:00
|
|
|
>>> q.items()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[(u'foo', u'another'), (u'name', u'john')]
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.lists()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[(u'foo', [u'bar', u'baz', u'another']), (u'name', [u'john'])]
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.keys()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'foo', u'name']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.values()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'another', u'john']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> len(q)
|
|
|
|
2
|
|
|
|
|
|
|
|
>>> q.update({'foo': 'hello'})
|
|
|
|
|
|
|
|
# Displays last value
|
|
|
|
>>> q['foo']
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
u'hello'
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.get('foo', 'not available')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
u'hello'
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.getlist('foo')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'bar', u'baz', u'another', u'hello']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.pop('foo')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'bar', u'baz', u'another', u'hello']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
2007-05-20 02:34:00 +08:00
|
|
|
>>> q.pop('foo', 'not there')
|
|
|
|
'not there'
|
|
|
|
|
2005-11-30 12:08:46 +08:00
|
|
|
>>> q.get('foo', 'not there')
|
|
|
|
'not there'
|
|
|
|
|
|
|
|
>>> q.setdefault('foo', 'bar')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
u'bar'
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q['foo']
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
u'bar'
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.getlist('foo')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'bar']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.urlencode()
|
|
|
|
'foo=bar&name=john'
|
|
|
|
|
|
|
|
>>> q.clear()
|
|
|
|
|
|
|
|
>>> len(q)
|
|
|
|
0
|
|
|
|
|
|
|
|
#####################################
|
|
|
|
# QueryDict with one key/value pair #
|
|
|
|
#####################################
|
|
|
|
|
|
|
|
>>> q = QueryDict('foo=bar')
|
|
|
|
|
|
|
|
>>> q['foo']
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
u'bar'
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q['bar']
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
2007-09-20 23:51:19 +08:00
|
|
|
MultiValueDictKeyError: "Key 'bar' not found in <QueryDict: {u'foo': [u'bar']}>"
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q['something'] = 'bar'
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.get('foo', 'default')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
u'bar'
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.get('bar', 'default')
|
|
|
|
'default'
|
|
|
|
|
|
|
|
>>> q.getlist('foo')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'bar']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.getlist('bar')
|
|
|
|
[]
|
|
|
|
|
|
|
|
>>> q.setlist('foo', ['bar', 'baz'])
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.appendlist('foo', ['bar'])
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.has_key('foo')
|
|
|
|
True
|
|
|
|
|
2007-04-26 21:30:48 +08:00
|
|
|
>>> 'foo' in q
|
|
|
|
True
|
|
|
|
|
2005-11-30 12:08:46 +08:00
|
|
|
>>> q.has_key('bar')
|
|
|
|
False
|
|
|
|
|
2007-04-26 21:30:48 +08:00
|
|
|
>>> 'bar' in q
|
|
|
|
False
|
|
|
|
|
2005-11-30 12:08:46 +08:00
|
|
|
>>> q.items()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[(u'foo', u'bar')]
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.lists()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[(u'foo', [u'bar'])]
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.keys()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'foo']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.values()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'bar']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> len(q)
|
|
|
|
1
|
|
|
|
|
|
|
|
>>> q.update({'foo': 'bar'})
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.pop('foo')
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.popitem()
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.clear()
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.setdefault('foo', 'bar')
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.urlencode()
|
|
|
|
'foo=bar'
|
|
|
|
|
|
|
|
#####################################################
|
|
|
|
# QueryDict with two key/value pairs with same keys #
|
|
|
|
#####################################################
|
|
|
|
|
|
|
|
>>> q = QueryDict('vote=yes&vote=no')
|
|
|
|
|
|
|
|
>>> q['vote']
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
u'no'
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q['something'] = 'bar'
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.get('vote', 'default')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
u'no'
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.get('foo', 'default')
|
|
|
|
'default'
|
|
|
|
|
|
|
|
>>> q.getlist('vote')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'yes', u'no']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.getlist('foo')
|
|
|
|
[]
|
|
|
|
|
|
|
|
>>> q.setlist('foo', ['bar', 'baz'])
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.appendlist('foo', ['bar'])
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.has_key('vote')
|
|
|
|
True
|
|
|
|
|
2007-04-26 21:30:48 +08:00
|
|
|
>>> 'vote' in q
|
|
|
|
True
|
|
|
|
|
2005-11-30 12:08:46 +08:00
|
|
|
>>> q.has_key('foo')
|
|
|
|
False
|
|
|
|
|
2007-04-26 21:30:48 +08:00
|
|
|
>>> 'foo' in q
|
|
|
|
False
|
|
|
|
|
2005-11-30 12:08:46 +08:00
|
|
|
>>> q.items()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[(u'vote', u'no')]
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.lists()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[(u'vote', [u'yes', u'no'])]
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.keys()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'vote']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> q.values()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
[u'no']
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
>>> len(q)
|
|
|
|
1
|
|
|
|
|
|
|
|
>>> q.update({'foo': 'bar'})
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.pop('foo')
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.popitem()
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.clear()
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.setdefault('foo', 'bar')
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
|
|
|
>>> q.urlencode()
|
|
|
|
'vote=yes&vote=no'
|
|
|
|
|
2007-05-11 16:22:06 +08:00
|
|
|
>>> del q['vote']
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AttributeError: This QueryDict instance is immutable
|
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
# QueryDicts must be able to handle invalid input encoding (in this case, bad
|
|
|
|
# UTF-8 encoding).
|
|
|
|
>>> q = QueryDict('foo=bar&foo=\xff')
|
|
|
|
|
|
|
|
>>> q['foo']
|
|
|
|
u'\ufffd'
|
|
|
|
|
|
|
|
>>> q.getlist('foo')
|
|
|
|
[u'bar', u'\ufffd']
|
|
|
|
|
2007-12-17 16:05:51 +08:00
|
|
|
|
2008-08-21 21:55:21 +08:00
|
|
|
########################
|
|
|
|
# Pickling a QueryDict #
|
|
|
|
########################
|
|
|
|
>>> import pickle
|
2009-03-31 13:14:13 +08:00
|
|
|
>>> q = QueryDict('')
|
|
|
|
>>> q1 = pickle.loads(pickle.dumps(q, 2))
|
|
|
|
>>> q == q1
|
|
|
|
True
|
2008-08-21 21:55:21 +08:00
|
|
|
>>> q = QueryDict('a=b&c=d')
|
2008-08-25 11:59:28 +08:00
|
|
|
>>> q1 = pickle.loads(pickle.dumps(q, 2))
|
2008-08-21 21:55:21 +08:00
|
|
|
>>> q == q1
|
|
|
|
True
|
2009-03-31 13:14:13 +08:00
|
|
|
>>> q = QueryDict('a=b&c=d&a=1')
|
|
|
|
>>> q1 = pickle.loads(pickle.dumps(q, 2))
|
|
|
|
>>> q == q1
|
|
|
|
True
|
2008-08-21 21:55:21 +08:00
|
|
|
|
|
|
|
######################################
|
|
|
|
# HttpResponse with Unicode headers #
|
|
|
|
######################################
|
|
|
|
|
|
|
|
>>> r = HttpResponse()
|
|
|
|
|
2007-12-17 16:05:51 +08:00
|
|
|
If we insert a unicode value it will be converted to an ascii
|
|
|
|
string. This makes sure we comply with the HTTP specifications.
|
2008-08-21 21:55:21 +08:00
|
|
|
|
|
|
|
>>> r['value'] = u'test value'
|
|
|
|
>>> isinstance(r['value'], str)
|
2007-12-17 16:05:51 +08:00
|
|
|
True
|
|
|
|
|
|
|
|
An error is raised When a unicode object with non-ascii is assigned.
|
|
|
|
|
|
|
|
>>> r['value'] = u't\xebst value' # doctest:+ELLIPSIS
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
UnicodeEncodeError: ..., HTTP response headers must be in US-ASCII format
|
2008-08-21 21:55:21 +08:00
|
|
|
|
|
|
|
The response also converts unicode keys to strings.
|
|
|
|
|
|
|
|
>>> r[u'test'] = 'testing key'
|
2007-12-17 16:50:19 +08:00
|
|
|
>>> l = list(r.items())
|
|
|
|
>>> l.sort()
|
|
|
|
>>> l[1]
|
2007-12-17 16:05:51 +08:00
|
|
|
('test', 'testing key')
|
|
|
|
|
|
|
|
It will also raise errors for keys with non-ascii data.
|
|
|
|
|
|
|
|
>>> r[u't\xebst'] = 'testing key' # doctest:+ELLIPSIS
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
UnicodeEncodeError: ..., HTTP response headers must be in US-ASCII format
|
2008-08-21 21:55:21 +08:00
|
|
|
|
2008-08-30 00:49:19 +08:00
|
|
|
#
|
|
|
|
# Regression test for #8278: QueryDict.update(QueryDict)
|
|
|
|
#
|
|
|
|
>>> x = QueryDict("a=1&a=2", mutable=True)
|
|
|
|
>>> y = QueryDict("a=3&a=4")
|
|
|
|
>>> x.update(y)
|
|
|
|
>>> x.getlist('a')
|
|
|
|
[u'1', u'2', u'3', u'4']
|
2005-11-30 12:08:46 +08:00
|
|
|
"""
|
|
|
|
|
2007-12-17 16:05:51 +08:00
|
|
|
from django.http import QueryDict, HttpResponse
|
2005-11-30 12:08:46 +08:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import doctest
|
|
|
|
doctest.testmod()
|