Steven Silvester
Steven Silvester
Yes, as @krassowski there isn't yet a clear broadcast channel to replace our use of Twitter. Other OSS orgs like the PSF and the Apache Software Foundation are still using...
Hi all, thanks for everyone involved in the conversation here and for those who have responded to the form. We have closed the form to further input, but the overall...
That's https://jira.mongodb.org/browse/PYTHON-4356
> Should I put it back on? Yeah, apparently https://jira.mongodb.org/browse/PYTHON-4182 was unrelated, I unblocked it and put it in scheduled.
Merging so we can check the waterfall afterward.
`pymongo` developer here, as best as I can tell Nuitka does not fully support [lazy imports](https://docs.python.org/3/library/importlib.html#implementing-lazy-imports). Example code: ```python import importlib.util import sys def lazy_import(name): spec = importlib.util.find_spec(name) loader =...
Another aspect of the problem is the handling of `ModuleNotFoundError`. ```bash $ cat hello.py e = ModuleNotFoundError(name="foo") print(e.name) $ python3 hello.py foo $ python3 -m nuitka --onefile hello.py $ ./hello.bin...
Thanks all, here is what I have for now as a workaround: ```python def lazy_import(name: str) -> ModuleType: """Lazily import a module by name From https://docs.python.org/3/library/importlib.html#implementing-lazy-imports """ # Eagerly import...
Hi @imoisharma, can you please try upgrading to either 1.2.13 or 2.1.1, which will give you a traceback in that dialog if it fails again.
Yeah, I can build `zmq` just fine, just not the second time around.