Read-only access to the address family for this socket.
(self)
| 514 | |
| 515 | @property |
| 516 | def family(self): |
| 517 | """Read-only access to the address family for this socket. |
| 518 | """ |
| 519 | return _intenum_converter(super().family, AddressFamily) |
| 520 | |
| 521 | @property |
| 522 | def type(self): |
nothing calls this directly
no test coverage detected