Set the given flag(s) without changing others.
(self, flag)
| 1767 | self.add_header('X-Status', xstatus_flags) |
| 1768 | |
| 1769 | def add_flag(self, flag): |
| 1770 | """Set the given flag(s) without changing others.""" |
| 1771 | self.set_flags(''.join(set(self.get_flags()) | set(flag))) |
| 1772 | |
| 1773 | def remove_flag(self, flag): |
| 1774 | """Unset the given string flag(s) without changing others.""" |