(self)
| 290 | |
| 291 | @property |
| 292 | def __conn(self): |
| 293 | warn("Access to __conn attribute on SMTPChannel is deprecated, " |
| 294 | "use 'conn' instead", DeprecationWarning, 2) |
| 295 | return self.conn |
| 296 | @__conn.setter |
| 297 | def __conn(self, value): |
| 298 | warn("Setting __conn attribute on SMTPChannel is deprecated, " |