我正在为 django python manage.py shell 打开 shell 命令
from django.contrib.auth import authenticate
print authenticate(username='q80', password='nokia6230') #result q80
现在,如果我登录 django 管理站点 /admin 并更改密码并返回到 shell,如果我使用旧值仍然进行身份验证!
from django.contrib.auth import authenticate
print authenticate(username='q80', password='newpassword') #result None
print authenticate(username='q80', password='nokia6230') #result q80
如果关闭 shell 会话并再次打开它的工作!
我怎样才能有实时变化的效果!?