(self)
| 213 | |
| 214 | @property |
| 215 | def __state(self): |
| 216 | warn("Access to __state attribute on SMTPChannel is deprecated, " |
| 217 | "use 'smtp_state' instead", DeprecationWarning, 2) |
| 218 | return self.smtp_state |
| 219 | @__state.setter |
| 220 | def __state(self, value): |
| 221 | warn("Setting __state attribute on SMTPChannel is deprecated, " |