Looking at dir(request.GET), I notice that pop is listed as a method. I also believe i’ve popped off attributes from request in the past.
Is that accurate? If so, why would this fail?
request.GET.pop('key')
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
request.GETandrequest.POSTare immutableQueryDictinstances. This means you cannot change their attributes directly.Copying a
QueryDict, returns a mutableQueryDict. You can then call the pop method of the copy without raising an error.