(self)
| 268 | |
| 269 | @property |
| 270 | def __fqdn(self): |
| 271 | warn("Access to __fqdn attribute on SMTPChannel is deprecated, " |
| 272 | "use 'fqdn' instead", DeprecationWarning, 2) |
| 273 | return self.fqdn |
| 274 | @__fqdn.setter |
| 275 | def __fqdn(self, value): |
| 276 | warn("Setting __fqdn attribute on SMTPChannel is deprecated, " |