Create a :class:`PipeConnection` from pipe handle `phandle`
(cls, phandle, *args, **kwargs)
| 32 | |
| 33 | @classmethod |
| 34 | def from_handle(cls, phandle, *args, **kwargs): |
| 35 | """Create a :class:`PipeConnection` from pipe handle `phandle`""" |
| 36 | connection = native_PipeConnection(phandle) |
| 37 | return cls(connection, *args, **kwargs) |
| 38 | |
| 39 | @classmethod |
| 40 | def create(cls, addr, security_descriptor=None): |
no outgoing calls
no test coverage detected