# HG changeset patch # User paulb # Date 1124994019 0 # Node ID 80fb0aaf134b2f86161f7f0136b391f48142b1ca # Parent 02caba8116adc3a6fe947afce60726187b590b5d [project @ 2005-08-25 18:20:17 by paulb] Made error handling explicit. diff -r 02caba8116ad -r 80fb0aaf134b examples/BaseHTTPRequestHandler/LoginApp.py --- a/examples/BaseHTTPRequestHandler/LoginApp.py Thu Aug 25 16:35:23 2005 +0000 +++ b/examples/BaseHTTPRequestHandler/LoginApp.py Thu Aug 25 18:20:19 2005 +0000 @@ -14,7 +14,8 @@ ) ) ), - address=("", 8081) + address=("", 8081), + handle_errors=1 ) # vim: tabstop=4 expandtab shiftwidth=4 diff -r 02caba8116ad -r 80fb0aaf134b examples/BaseHTTPRequestHandler/SimpleWithLoginApp.py --- a/examples/BaseHTTPRequestHandler/SimpleWithLoginApp.py Thu Aug 25 16:35:23 2005 +0000 +++ b/examples/BaseHTTPRequestHandler/SimpleWithLoginApp.py Thu Aug 25 18:20:19 2005 +0000 @@ -13,7 +13,8 @@ authenticator=LoginRedirectAuthenticator(secret_key="horses"), anonymous_parameter_name="anonymous", logout_parameter_name="logout" - ) + ), + handle_errors=1 ) # vim: tabstop=4 expandtab shiftwidth=4 diff -r 02caba8116ad -r 80fb0aaf134b examples/CGI/LoginHandler.py --- a/examples/CGI/LoginHandler.py Thu Aug 25 16:35:23 2005 +0000 +++ b/examples/CGI/LoginHandler.py Thu Aug 25 18:20:19 2005 +0000 @@ -18,7 +18,8 @@ ("vole", "xyz"), ) ) - ) + ), + handle_errors=1 ) # vim: tabstop=4 expandtab shiftwidth=4 diff -r 02caba8116ad -r 80fb0aaf134b examples/CGI/SimpleWithLoginHandler.py --- a/examples/CGI/SimpleWithLoginHandler.py Thu Aug 25 16:35:23 2005 +0000 +++ b/examples/CGI/SimpleWithLoginHandler.py Thu Aug 25 18:20:19 2005 +0000 @@ -22,7 +22,8 @@ authenticator=LoginRedirectAuthenticator(secret_key="horses"), anonymous_parameter_name="anonymous", logout_parameter_name="logout" - ) + ), + handle_errors=1 ) # vim: tabstop=4 expandtab shiftwidth=4