(self)
| 235 | |
| 236 | @property |
| 237 | def __mailfrom(self): |
| 238 | warn("Access to __mailfrom attribute on SMTPChannel is deprecated, " |
| 239 | "use 'mailfrom' instead", DeprecationWarning, 2) |
| 240 | return self.mailfrom |
| 241 | @__mailfrom.setter |
| 242 | def __mailfrom(self, value): |
| 243 | warn("Setting __mailfrom attribute on SMTPChannel is deprecated, " |