Hello, Regarding the issue about password is None in check_password (http:// code.djangoproject.com/ticket/14354). I attached a patch with the following changes:
- in set_password(), check for raw_password and if None or empty, call set_unusable_password(), otherwise same as before - in has_usable_password(), return True only if password is not None, not empty, or '!' - because of the 2 changes above, we can simplify a bit create_user() by just calling set_password() for all cases. No need to test password inside this function anymore. - basic.py tests are now unittests and not doctests I assumed that has_usable_password() will be called directly by the user code so I didn't modify check_password(). Please let me know if my changes match what is expected. Laurent http://www.laurentluce.com http://www.gourmious.com -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
