Kay Hayen

Results 1287 comments of Kay Hayen

So, yes, I think we can make a Django plugin that will execute the main script given with said options, and kind of requires from your to have this extension...

I will schedule a stream to make this, I will keep you posted. If you joined me there, that would be cool, but it feels like I have enough to...

Very much expected. I got a new CI machine that will also double duty as a streaming platform. I got taxes to catch up with this week, but after that,...

The second one is the plan, and exists as an issue already. Without it, Nuitka is practically unusable. Sorry for closing this as a duplicate though.

I did search a lot now, and shamefully I cannot find it. Many issues for performance mention the topic, but they don't work on solutions. As far as caching goes,...

When we demote to bytecode, there will be no C code and no object files. For tools like `ccache` and `clcache` it's easy to generate the object file from their...

I you can, you ought to start by making the bytecode demotes modules using the information written to the cache already. It should be at least in the current develop...

You want your options to influence `nuitka.tree.Bulding` function `decideCompilationMode`, where this happens. Plugins currently are the only ones to make this happen, but you were to add command line options...

When loading the module, we can do that. ``` result = CompiledPythonModule( module_name=module_name, is_top=is_top, mode=decideCompilationMode(is_top, module_name, source_ref), future_spec=None, source_ref=source_ref, ) ``` Right here, the decided compilation mode is not used...

Adding an option that matches module names that controls it would be nice, something similar to this, the function from modules should lead you down to where the option is...