Set delivery date of message, in seconds since the epoch.
(self, date)
| 1646 | return self._date |
| 1647 | |
| 1648 | def set_date(self, date): |
| 1649 | """Set delivery date of message, in seconds since the epoch.""" |
| 1650 | try: |
| 1651 | self._date = float(date) |
| 1652 | except ValueError: |
| 1653 | raise TypeError("can't convert to float: %s" % date) from None |
| 1654 | |
| 1655 | def get_info(self): |
| 1656 | """Get the message's "info" as a string.""" |
no outgoing calls