getproxypeername() -> address info Returns the IP and port number of the proxy.
(self)
| 294 | return self.__proxysockname |
| 295 | |
| 296 | def getproxypeername(self): |
| 297 | """getproxypeername() -> address info |
| 298 | Returns the IP and port number of the proxy. |
| 299 | """ |
| 300 | return _orgsocket.getpeername(self) |
| 301 | |
| 302 | def getpeername(self): |
| 303 | """getpeername() -> address info |
nothing calls this directly
no test coverage detected