(self)
| 223 | |
| 224 | @property |
| 225 | def __mailfrom(self): |
| 226 | warn("Access to __mailfrom attribute on SMTPChannel is deprecated, " |
| 227 | "use 'mailfrom' instead", DeprecationWarning, 2) |
| 228 | return self.mailfrom |
| 229 | @__mailfrom.setter |
| 230 | def __mailfrom(self, value): |
| 231 | warn("Setting __mailfrom attribute on SMTPChannel is deprecated, " |