(self, path)
| 1072 | def get_handlers(self): |
| 1073 | class StaticUrlHandler(RequestHandler): |
| 1074 | def get(self, path): |
| 1075 | with_v = int(self.get_argument("include_version", "1")) |
| 1076 | self.write(self.static_url(path, include_version=with_v)) |
| 1077 | |
| 1078 | class AbsoluteStaticUrlHandler(StaticUrlHandler): |
| 1079 | include_host = True |
nothing calls this directly
no test coverage detected