python_ooo_dev_tools
python_ooo_dev_tools copied to clipboard
Got an interesing case today: ```python from ooodev.loader.lo import Lo def b(): with Lo.Loader(Lo.ConnectSocket(headless=True)) as loader1: pass with Lo.Loader(Lo.ConnectSocket(headless=True)) as loader2: print(youpi) b() ``` notice the `NameError` on the print...
Just running my usual reproducer: ```python import logging from ooodev.loader.inst.options import Options as LoOptions from ooodev.loader.lo import Lo def main(): with Lo.Loader( Lo.ConnectSocket(headless=True), opt=LoOptions(log_level=logging.DEBUG) ): pass main() ``` but this...
Using ooo-dev-tools 0.47.18 (also on 0.47.17 and I don't remember for previous ones) I'm getting a `ResourceWarning` about un unkilled subprocess: ``` $ PYTHONTRACEMALLOC=20 python repro.py 05/10/2024 09:24:20 - DEBUG...