scoder

Results 650 comments of scoder

Thanks for the report, that's certainly a bug in the new monitoring implementation: https://github.com/cython/cython/pull/6144 As a first guess, this sounds like it's not exiting from a function scope correctly, so...

This discussion is confusing two things that run in parallel but independently. The first is the translation that Cython does, .py(x) to .c or .cpp. If you are using the...

I'm not sure I understand what the issue is here. Is this something that can be tested, or is it covered by existing tests?

Ah, probably related to this, right? https://github.com/cython/cython/pull/6652#issuecomment-2637686633

Wow. I wasn't expecting any further changes in *this* order in the near future any more (certainly not for 3.1), after introducing the shared module. This seems a huge change...

> FastGIL is broken in the branch 0.29.x under Python 3.11, producing code that compiles fine but errors at executing time. I suggest we raise an error during compilation for...

> So no FastGIL on 0.29.x+Python-3.11 is unusable even though the generated code compiles. That's why it's disabled there. > I found under Python 3.10, disabling FastGIL is consistently slightly...

I'm excluding this from 3.1 since it's currently unclear what to do. The feature is already opt-in and removing it doesn't seem "right enough" at this point.

I understand the general urge to ask for a user controllable option, but… https://xkcd.com/1172/ Adding a new directive has a remarkable cost. It adds to the documentation, users have to...

Yes, that's intended. It's a C enum with C semantics but with an additional Python interface.