Set delivery date of message, in seconds since the epoch.
(self, date)
| 1653 | return self._date |
| 1654 | |
| 1655 | def set_date(self, date): |
| 1656 | """Set delivery date of message, in seconds since the epoch.""" |
| 1657 | try: |
| 1658 | self._date = float(date) |
| 1659 | except ValueError: |
| 1660 | raise TypeError("can't convert to float: %s" % date) from None |
| 1661 | |
| 1662 | def get_info(self): |
| 1663 | """Get the message's "info" as a string.""" |
no outgoing calls