()
| 243 | |
| 244 | @contextlib.contextmanager |
| 245 | def unix_socket_path(): |
| 246 | path = gen_unix_socket_path() |
| 247 | try: |
| 248 | yield path |
| 249 | finally: |
| 250 | try: |
| 251 | os.unlink(path) |
| 252 | except OSError: |
| 253 | pass |
| 254 | |
| 255 | |
| 256 | @contextlib.contextmanager |
no test coverage detected
searching dependent graphs…