Return True if the message consists of multiple parts.
(self)
| 215 | return fp.getvalue() |
| 216 | |
| 217 | def is_multipart(self): |
| 218 | """Return True if the message consists of multiple parts.""" |
| 219 | return isinstance(self._payload, list) |
| 220 | |
| 221 | # |
| 222 | # Unix From_ line |
no outgoing calls