Vladimir Kuzmin

Results 1 comments of Vladimir Kuzmin

Tested on macos 12.0.1, no issue with `execv`: ```python import os, threading, time t = threading.Thread(target=lambda: time.sleep(120)) t.start() os.execv('/bin/echo', ['/bin/echo', 'ok']) ``` printed "ok".