Set the given flag(s) without changing others.
(self, flag)
| 1760 | self.add_header('X-Status', xstatus_flags) |
| 1761 | |
| 1762 | def add_flag(self, flag): |
| 1763 | """Set the given flag(s) without changing others.""" |
| 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.""" |