Set the given flags and unset all others.
(self, flags)
| 1636 | return '' |
| 1637 | |
| 1638 | def set_flags(self, flags): |
| 1639 | """Set the given flags and unset all others.""" |
| 1640 | self._info = '2,' + ''.join(sorted(flags)) |
| 1641 | |
| 1642 | def add_flag(self, flag): |
| 1643 | """Set the given flag(s) without changing others.""" |