(self)
| 279 | |
| 280 | @property |
| 281 | def __peer(self): |
| 282 | warn("Access to __peer attribute on SMTPChannel is deprecated, " |
| 283 | "use 'peer' instead", DeprecationWarning, 2) |
| 284 | return self.peer |
| 285 | @__peer.setter |
| 286 | def __peer(self, value): |
| 287 | warn("Setting __peer attribute on SMTPChannel is deprecated, " |