Hello! Thanks for working actively on python3.12! I hope to switch from 3.10 to 3.12 with a bigger project, but having trouble switching. I built a minimal example for the issue I found. A similar bug ticket exists, but it was closed sin...
Nuitka is a Python compiler written in Python. It's fully compatible with Python 2.6, 2.7, 3.4-3.12. You feed it your Python app, it does a lot of clever things, and spits out an executable or extension module. - Nuitka/nuitka/MainControl.py at develop
Hello, I am running into the following error after build when I use the lightning module and call the predict function on the trainer: AttributeError: module 'os' has no attribute '__file__' Here is the output of my python -m nuitka --ve...
Normal modules are named in camel case with leading upper case, because of their role as singleton classes. The difference between a module and a class is small enough and in the source code they are also used similarly. For the packages, no real code is allowed in their__init__.pyand ...
There is a function being called that is supposed to get at the module name from a filename, and it must be doing it wrong. Inimpmodule there is a list of suffixes for extension modules, seems we are not using it there to detect what to strip. ...
Hi there, I would also love to see that working! I have no time right now to look into it, but you may be interested in starting with this already existing Docker Image for your tests: https://hub.docker.com/r/gsauthof/fedora-mingw64-devel/ ...
Nuitka is a Python compiler written in Python. It's fully compatible with Python 2.6, 2.7, 3.4-3.12. You feed it your Python app, it does a lot of clever things, and spits out an executable or extension module. - Nuitka/nuitka/MainControl.py at develop
Imagine a module that does os.system(), it would be done during compilation. People often connect to databases, and these kind of things, at import time. Therefore CPython exhibits the interfaces in an imp module in standard library, which one can use those to know ahead of time, what ...
The actual import of a module would already execute code that changes things. Imagine a module that does os.system(), it would be done during compilation. People often connect to databases, and these kind of things, at import time. Therefore CPython exhibits the interfaces in an imp module...
The actual import of a module would already execute code that changes things. Imagine a module that does os.system(), it would be done during compilation. People often connect to databases, and these kind of things, at import time. Therefore CPython exhibits the interfaces in an imp module...