Set delivery date of message, in seconds since the epoch.
(self, date)
| 1572 | return self._date |
| 1573 | |
| 1574 | def set_date(self, date): |
| 1575 | """Set delivery date of message, in seconds since the epoch.""" |
| 1576 | try: |
| 1577 | self._date = float(date) |
| 1578 | except ValueError: |
| 1579 | raise TypeError("can't convert to float: %s" % date) from None |
| 1580 | |
| 1581 | def get_info(self): |
| 1582 | """Get the message's "info" as a string.""" |
no outgoing calls
no test coverage detected