Steven D'Aprano <[EMAIL PROTECTED]> writes:
> If I'm mistaken, please explain why I'm mistaken, not just repeat your 
> claim in different words.

    if user_entered_password != stored_password_from_database:
      password_is_correct = False
    ...
    if password_is_correct:
      log_user_in()

Does "password_is_correct" refer to the same variable in both places?
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to