This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sqdqs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class AccessDenied(Exception): | |
| """ Login/password error. No message, no traceback. """ | |
| def __init__(self): | |
| super(AccessDenied, self).__init__('Access denied.') | |
| self.traceback = ('', '', '') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>title of this page</title> | |
| </head> | |
| <body> | |
| <h1>hello world!</h1> | |
| </body> | |
| </html> |