()
| 5510 | return x*x |
| 5511 | |
| 5512 | def pool_in_process(): |
| 5513 | pool = multiprocessing.Pool(processes=4) |
| 5514 | x = pool.map(_afunc, [1, 2, 3, 4, 5, 6, 7]) |
| 5515 | pool.close() |
| 5516 | pool.join() |
| 5517 | |
| 5518 | class _file_like(object): |
| 5519 | def __init__(self, delegate): |