(self)
| 301 | |
| 302 | @property |
| 303 | def __addr(self): |
| 304 | warn("Access to __addr attribute on SMTPChannel is deprecated, " |
| 305 | "use 'addr' instead", DeprecationWarning, 2) |
| 306 | return self.addr |
| 307 | @__addr.setter |
| 308 | def __addr(self, value): |
| 309 | warn("Setting __addr attribute on SMTPChannel is deprecated, " |