Django code examples that include post data often show code like this:
if request.method == "POST": post = request.POST.copy()
Is there a reason for copying message data instead of working directly with it?
python django
Jeff Feb 26 '10 at 6:26 2010-02-26 06:26
source share