On 03-Apr-09, at 7:43 PM, simong wrote:

>   if request.method == 'POST':
>       productform = ProductForm(request.POST, instance=product)
>       productform.user = user
>       if productform.is_valid:


`is_valid` is a method bound to the BaseForm class. The expression in
the snippet above _will_ evaluate to True because it will return a
reference to the bound method, as opposed to return nothing, but will
not, of course, execute the referenced method.


-- 
Ayaz Ahmed Khan

An evil mind is a great comfort.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to