(self)
| 704 | |
| 705 | class GetArgumentsHandler(RequestHandler): |
| 706 | def prepare(self): |
| 707 | self.finish( |
| 708 | dict( |
| 709 | default=self.get_arguments("foo"), |
| 710 | query=self.get_query_arguments("foo"), |
| 711 | body=self.get_body_arguments("foo"), |
| 712 | ) |
| 713 | ) |
| 714 | |
| 715 | |
| 716 | # This test was shared with wsgi_test.py; now the name is meaningless. |
nothing calls this directly
no test coverage detected