Return as a string the flags that are set.
(self)
| 1741 | self._from = from_ |
| 1742 | |
| 1743 | def get_flags(self): |
| 1744 | """Return as a string the flags that are set.""" |
| 1745 | return self.get('Status', '') + self.get('X-Status', '') |
| 1746 | |
| 1747 | def set_flags(self, flags): |
| 1748 | """Set the given flags and unset all others.""" |
no test coverage detected