Return as a string the flags that are set.
(self)
| 1734 | self._from = from_ |
| 1735 | |
| 1736 | def get_flags(self): |
| 1737 | """Return as a string the flags that are set.""" |
| 1738 | return self.get('Status', '') + self.get('X-Status', '') |
| 1739 | |
| 1740 | def set_flags(self, flags): |
| 1741 | """Set the given flags and unset all others.""" |
no test coverage detected