(self)
| 201 | |
| 202 | @property |
| 203 | def __state(self): |
| 204 | warn("Access to __state attribute on SMTPChannel is deprecated, " |
| 205 | "use 'smtp_state' instead", DeprecationWarning, 2) |
| 206 | return self.smtp_state |
| 207 | @__state.setter |
| 208 | def __state(self, value): |
| 209 | warn("Setting __state attribute on SMTPChannel is deprecated, " |