(self)
| 246 | |
| 247 | @property |
| 248 | def __rcpttos(self): |
| 249 | warn("Access to __rcpttos attribute on SMTPChannel is deprecated, " |
| 250 | "use 'rcpttos' instead", DeprecationWarning, 2) |
| 251 | return self.rcpttos |
| 252 | @__rcpttos.setter |
| 253 | def __rcpttos(self, value): |
| 254 | warn("Setting __rcpttos attribute on SMTPChannel is deprecated, " |