Kay Hayen

Results 1287 comments of Kay Hayen

I was able to run the no-GIL on Windows a while ago, it was pretty easy, probably due to no extension modules being imported, the hello world kind of test...

So the release candidate should be working OK on the current develop version, I will be investigating it further this week, when I start to prepare my PyLATAM talk for...

I did integrate the change I noticed for Py_DECREF to be macros with MSVC so as to not hit LTO limitations that make things slow, and I about to make...

I am not sure how to verify that free threading is actually being used right now, a simple test would make sense. I am tempted to also separate 3.13 support,...

There is special handling for `ImportError` and its arg only, I don't think I noticed `ModuleNotFoundError` yet. I also never saw `importlib.util.LazyLoader` so far, I will check it out. Seems...

I will start to add support for the `ModuleNotFoundError` keyword arguments. Since we got a good precedent with `ImportError` surely that cannot be too hard, although it's besides the point,...

Thanks for your report, this is worked on the factory branch, which is a development version under rapid development. You can try it out by going here: https://nuitka.net/doc/factory.html Feedback on...

So, it seems lazy loader for the example code is working as expected. As for lazy loading, I would normally recommend to use the `lazy` package, that works out of...

Yes, being built-in, means Nuitka doesn't step it, trying with my badly self-compiled 3.9 now, that probably doesn't do it, since it's an extension module there. Extension module loading will...

Yeah, I managed to reproduce it, checking the source code now, I came across this: ``` def __getattribute__(self, attr): """Trigger the load of the module and return the attribute.""" #...