(self)
| 42 | |
| 43 | class PostHandler(RequestHandler): |
| 44 | def post(self): |
| 45 | self.finish( |
| 46 | "Post arg1: %s, arg2: %s" |
| 47 | % (self.get_argument("arg1"), self.get_argument("arg2")) |
| 48 | ) |
| 49 | |
| 50 | |
| 51 | class PutHandler(RequestHandler): |
nothing calls this directly
no test coverage detected