Close the handle of the pipe
(self)
| 97 | security_descriptor = property(get_security_descriptor, set_security_descriptor) |
| 98 | |
| 99 | def close(self): |
| 100 | """Close the handle of the pipe""" |
| 101 | self.connection.close() |
| 102 | self.handle = None |
| 103 | |
| 104 | def __enter__(self): |
| 105 | return self |