Return as a string the flags that are set.
(self)
| 1660 | self._from = from_ |
| 1661 | |
| 1662 | def get_flags(self): |
| 1663 | """Return as a string the flags that are set.""" |
| 1664 | return self.get('Status', '') + self.get('X-Status', '') |
| 1665 | |
| 1666 | def set_flags(self, flags): |
| 1667 | """Set the given flags and unset all others.""" |
no test coverage detected