Set "From " line, formatting and appending time_ if specified.
(self, from_, time_=None)
| 1733 | return self._from |
| 1734 | |
| 1735 | def set_from(self, from_, time_=None): |
| 1736 | """Set "From " line, formatting and appending time_ if specified.""" |
| 1737 | if time_ is not None: |
| 1738 | if time_ is True: |
| 1739 | time_ = time.gmtime() |
| 1740 | from_ += ' ' + time.asctime(time_) |
| 1741 | self._from = from_ |
| 1742 | |
| 1743 | def get_flags(self): |
| 1744 | """Return as a string the flags that are set.""" |
no outgoing calls