Return True if the message consists of multiple parts.
(self)
| 209 | return fp.getvalue() |
| 210 | |
| 211 | def is_multipart(self): |
| 212 | """Return True if the message consists of multiple parts.""" |
| 213 | return isinstance(self._payload, list) |
| 214 | |
| 215 | # |
| 216 | # Unix From_ line |
no outgoing calls
no test coverage detected