(self)
| 257 | |
| 258 | @property |
| 259 | def __data(self): |
| 260 | warn("Access to __data attribute on SMTPChannel is deprecated, " |
| 261 | "use 'received_data' instead", DeprecationWarning, 2) |
| 262 | return self.received_data |
| 263 | @__data.setter |
| 264 | def __data(self, value): |
| 265 | warn("Setting __data attribute on SMTPChannel is deprecated, " |