Read-only access to the socket type.
(self)
| 537 | |
| 538 | @property |
| 539 | def type(self): |
| 540 | """Read-only access to the socket type. |
| 541 | """ |
| 542 | return _intenum_converter(super().type, SocketKind) |
| 543 | |
| 544 | if os.name == 'nt': |
| 545 | def get_inheritable(self): |
no test coverage detected