0

これに関する私のコード:

try:
    self.cookie = Cookie.SimpleCookie(os.environ["HTTP_COOKIE"])
    tmpuid = self.cookie["uid"].value
    tmpsid = self.cookie["sid"].value
except Exception as e:
    if not str(e).startswith('No cookie set'):
        import traceback
        traceback.print_exc()
    return False

「traceback.print_exc()」の後に「return False」は必要ですか?

4

1 に答える 1

1

確かに、例外は例外でのみ停止しNo cookie setます。それが他の例外である場合、プログラムはreturn False次のステートメントに進む代わりに

于 2013-01-06T01:49:48.633 に答える