Set the given flag(s) without changing others.
(self, flag)
| 1559 | self._info = '2,' + ''.join(sorted(flags)) |
| 1560 | |
| 1561 | def add_flag(self, flag): |
| 1562 | """Set the given flag(s) without changing others.""" |
| 1563 | self.set_flags(''.join(set(self.get_flags()) | set(flag))) |
| 1564 | |
| 1565 | def remove_flag(self, flag): |
| 1566 | """Unset the given string flag(s) without changing others.""" |
no test coverage detected