Read-only access to the address family for this socket.
(self)
| 531 | |
| 532 | @property |
| 533 | def family(self): |
| 534 | """Read-only access to the address family for this socket. |
| 535 | """ |
| 536 | return _intenum_converter(super().family, AddressFamily) |
| 537 | |
| 538 | @property |
| 539 | def type(self): |
nothing calls this directly
no test coverage detected