Hi Alex,
Alex Gaynor wrote:
> On Tue, Mar 3, 2009 at 6:29 PM, Ishwor Gurung wrote:
>
>> Hi,
>>
>> What is the motive behind working on a copy of 'request.POST':
>> e.g -
>> if request.method == "POST":
>>post = request.POST.copy()
>>
>> AFAIK, this implies making a copy of POST and workin
On Tue, Mar 3, 2009 at 6:29 PM, Ishwor Gurung wrote:
> Hi,
>
> What is the motive behind working on a copy of 'request.POST':
> e.g -
> if request.method == "POST":
>post = request.POST.copy()
>
> AFAIK, this implies making a copy of POST and working on it.
> Rather wouldn't it be faster i
Hi,
What is the motive behind working on a copy of 'request.POST':
e.g -
if request.method == "POST":
post = request.POST.copy()
AFAIK, this implies making a copy of POST and working on it.
Rather wouldn't it be faster if we work on request.POST directly? :
if request.method == "POST:
3 matches
Mail list logo