On Sun, Jan 17, 2010 at 11:47 PM, Benjamin Welton <
benjamin.r.wel...@wmich.edu> wrote:

>   Since the call structure goes similar to this Django Internals ->
> view_func1 -> authenticate_user. That return is required so that the Django
> internals see the HttpResponse Class. Without this return all thats passed
> back to django is None.
>


To clarify, it is Python the language, not Django, that requires an explicit
return value.  In Python, if a function or method wants to return something
other than None, it much have an explicit return specifying what is to be
returned.  "Running off the end of the code" results in the function/method
returning None, not (as in some languages) the value of the last evaluated
expression.

Karen
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-us...@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