(conn, root)
| 69 | parent_conn, child_conn = ctx.Pipe() |
| 70 | |
| 71 | def child(conn, root): |
| 72 | try: |
| 73 | before = FastPath.__new__.cache_info().currsize |
| 74 | FastPath(root) |
| 75 | after = FastPath.__new__.cache_info().currsize |
| 76 | conn.send((before, after)) |
| 77 | finally: |
| 78 | conn.close() |
| 79 | |
| 80 | proc = ctx.Process(target=child, args=(child_conn, zip_path)) |
| 81 | proc.start() |
no test coverage detected