QueryDict.pop(key)
[source]
Returns a list of values for the given key and removes them from the dictionary. Raises KeyError
if the key does not exist. For example:
1 2 3 | >>> q = QueryDict( 'a=1&a=2&a=3' , mutable = True ) >>> q.pop( 'a' ) [ '1' , '2' , '3' ] |
Please login to continue.