The auth/tests.py, which evidently was added yesterday, produces some failed assertions when enacted by 'python manage.py test':
======================================================================
FAIL: test_email_found (django.contrib.auth.tests.PasswordResetTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/django/contrib/auth/tests.py", line 71, in test_email_found
self.assertEquals(response.status_code, 302)
AssertionError: 404 != 302
======================================================================
FAIL: test_email_not_found (django.contrib.auth.tests.PasswordResetTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/django/contrib/auth/tests.py", line 64, in test_email_not_found
self.assertEquals(response.status_code, 200)
AssertionError: 404 != 200
----------------------------------------------------------------------