Set the given flags and unset all others.
(self, flags)
| 1555 | return '' |
| 1556 | |
| 1557 | def set_flags(self, flags): |
| 1558 | """Set the given flags and unset all others.""" |
| 1559 | self._info = '2,' + ''.join(sorted(flags)) |
| 1560 | |
| 1561 | def add_flag(self, flag): |
| 1562 | """Set the given flag(s) without changing others.""" |
no test coverage detected