Set the given flag(s) without changing others.
(self, flag)
| 1633 | self._info = '2,' + ''.join(sorted(flags)) |
| 1634 | |
| 1635 | def add_flag(self, flag): |
| 1636 | """Set the given flag(s) without changing others.""" |
| 1637 | self.set_flags(''.join(set(self.get_flags()) | set(flag))) |
| 1638 | |
| 1639 | def remove_flag(self, flag): |
| 1640 | """Unset the given string flag(s) without changing others.""" |