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