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