()
| 5186 | return x*x |
| 5187 | |
| 5188 | def pool_in_process(): |
| 5189 | pool = multiprocessing.Pool(processes=4) |
| 5190 | x = pool.map(_afunc, [1, 2, 3, 4, 5, 6, 7]) |
| 5191 | pool.close() |
| 5192 | pool.join() |
| 5193 | |
| 5194 | class _file_like(object): |
| 5195 | def __init__(self, delegate): |