(self, cmd, rest=None)
| 790 | # --- Overridden FTP methods |
| 791 | |
| 792 | def ntransfercmd(self, cmd, rest=None): |
| 793 | conn, size = super().ntransfercmd(cmd, rest) |
| 794 | if self._prot_p: |
| 795 | conn = self.context.wrap_socket(conn, |
| 796 | server_hostname=self.host) |
| 797 | return conn, size |
| 798 | |
| 799 | def abort(self): |
| 800 | # overridden as we can't pass MSG_OOB flag to sendall() |
nothing calls this directly
no test coverage detected