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