[issue15795] Zipfile.extractall does not preserve file permissions

2021-10-25 Thread Selim Belhaouane
Change by Selim Belhaouane : -- nosy: +selimb ___ Python tracker <https://bugs.python.org/issue15795> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43064] Impossible to override signal handler set with add_signal_handler in forked process

2021-01-29 Thread Selim Belhaouane
New submission from Selim Belhaouane : Cannot clear signal handler set with loop.add_signal_handler in forked process with signal.signal # Context I'm running an async web server with uvicorn[1] and have background processes (using multiprocessing) doing CPU-bound work. uvicorn in

[issue43064] Cannot clear signal handler set with loop.add_signal_handler in forked process with signal.signal

2021-01-29 Thread Selim Belhaouane
Change by Selim Belhaouane : -- title: Impossible to override signal handler set with add_signal_handler in forked process -> Cannot clear signal handler set with loop.add_signal_handler in forked process with signal.signal ___ Python trac

[issue43064] Cannot clear signal handler set with loop.add_signal_handler in forked process with signal.signal

2021-02-01 Thread Selim Belhaouane
Selim Belhaouane added the comment: Playing with this a bit more, I found a weird workaround. By adding the following to the top of worker_sync(), Experiment 1 produces the expected result. def worker_sync(): async def clear_asyncio_signal_handlers(): loop