(self, *args, content_manager=None, **kw)
| 1140 | return content_manager.get_content(self, *args, **kw) |
| 1141 | |
| 1142 | def set_content(self, *args, content_manager=None, **kw): |
| 1143 | if content_manager is None: |
| 1144 | content_manager = self.policy.content_manager |
| 1145 | content_manager.set_content(self, *args, **kw) |
| 1146 | |
| 1147 | def _make_multipart(self, subtype, disallowed_subtypes, boundary): |
| 1148 | if self.get_content_maintype() == 'multipart': |
no outgoing calls
no test coverage detected