TODO: Write a project description
TODO: Describe the installation process
| class AlreadyTakenException(Exception): | |
| pass | |
| class GameEndException(Exception): | |
| pass | |
| class TicTacToe: | |
| """ | |
| @return: nothing | |
| """ |
| from wtforms.validators import ValidationError | |
| class UniqChecker: | |
| def __init__(self, model, fieldname, message=None): | |
| if message: | |
| self.message = message | |
| else: | |
| self.message = "You shall no pass" | |
| self.model = model |