(self, boundary=None)
| 1178 | self._make_multipart('alternative', ('mixed',), boundary) |
| 1179 | |
| 1180 | def make_mixed(self, boundary=None): |
| 1181 | self._make_multipart('mixed', (), boundary) |
| 1182 | |
| 1183 | def _add_multipart(self, _subtype, *args, _disp=None, **kw): |
| 1184 | if (self.get_content_maintype() != 'multipart' or |
nothing calls this directly
no test coverage detected