(self, application, request, **kwargs)
| 350 | @tornado.web.stream_request_body |
| 351 | class StreamUploadRequestHandler(BaseRequestHandler): |
| 352 | def __init__(self, application, request, **kwargs): |
| 353 | super().__init__(application, request, **kwargs) |
| 354 | |
| 355 | self.form_reader = None |
| 356 | |
| 357 | @check_authorization |
| 358 | def prepare(self): |