Omar Zaki

Results 3 comments of Omar Zaki

I apologize for not providing enough information on the issue, and for not responding to your comment. I really appreciate your help on this matter. I know the issue is...

```python import pebble import time def task(parameter): while True: pass if __name__ == '__main__': pool = pebble.ProcessPool(4) PoolProcess = pool.map(task, range(100)) print(1) time.sleep(10) print(2) pool.stop() pool.join() print(3) ``` The previous...

Thanks a lot for your effort. I really appreciate it.