(self)
| 191 | |
| 192 | @property |
| 193 | def __line(self): |
| 194 | warn("Access to __line attribute on SMTPChannel is deprecated, " |
| 195 | "use 'received_lines' instead", DeprecationWarning, 2) |
| 196 | return self.received_lines |
| 197 | @__line.setter |
| 198 | def __line(self, value): |
| 199 | warn("Setting __line attribute on SMTPChannel is deprecated, " |