(self, cmd, rest=None)
| 768 | # --- Overridden FTP methods |
| 769 | |
| 770 | def ntransfercmd(self, cmd, rest=None): |
| 771 | conn, size = super().ntransfercmd(cmd, rest) |
| 772 | if self._prot_p: |
| 773 | conn = self.context.wrap_socket(conn, |
| 774 | server_hostname=self.host) |
| 775 | return conn, size |
| 776 | |
| 777 | def abort(self): |
| 778 | # overridden as we can't pass MSG_OOB flag to sendall() |
nothing calls this directly
no test coverage detected