Set the given flags and unset all others.
(self, flags)
| 1629 | return '' |
| 1630 | |
| 1631 | def set_flags(self, flags): |
| 1632 | """Set the given flags and unset all others.""" |
| 1633 | self._info = '2,' + ''.join(sorted(flags)) |
| 1634 | |
| 1635 | def add_flag(self, flag): |
| 1636 | """Set the given flag(s) without changing others.""" |