The method unconditionally raises an exception since the STLS command doesn't make any sense on an already established SSL/TLS session.
(self, context=None)
| 455 | return sock |
| 456 | |
| 457 | def stls(self, context=None): |
| 458 | """The method unconditionally raises an exception since the |
| 459 | STLS command doesn't make any sense on an already established |
| 460 | SSL/TLS session. |
| 461 | """ |
| 462 | raise error_proto('-ERR TLS session already established') |
| 463 | |
| 464 | __all__.append("POP3_SSL") |
| 465 |
nothing calls this directly
no test coverage detected