(self, *args, **kw)
| 490 | value_parser = staticmethod(parser.parse_content_disposition_header) |
| 491 | |
| 492 | def init(self, *args, **kw): |
| 493 | super().init(*args, **kw) |
| 494 | cd = self._parse_tree.content_disposition |
| 495 | self._content_disposition = cd if cd is None else utils._sanitize(cd) |
| 496 | |
| 497 | @property |
| 498 | def content_disposition(self): |