Unset the given string flag(s) without changing others.
(self, flag)
| 1764 | self.set_flags(''.join(set(self.get_flags()) | set(flag))) |
| 1765 | |
| 1766 | def remove_flag(self, flag): |
| 1767 | """Unset the given string flag(s) without changing others.""" |
| 1768 | if 'Status' in self or 'X-Status' in self: |
| 1769 | self.set_flags(''.join(set(self.get_flags()) - set(flag))) |
| 1770 | |
| 1771 | def _explain_to(self, message): |
| 1772 | """Copy mbox- or MMDF-specific state to message insofar as possible.""" |