scoder

Results 650 comments of scoder

I started going through the list of open PRs to see what can still be merged for a first alpha release, but as the goal seems to be to have...

I released Cython 3.1.0a1 to PyPI. Have fun.

I'm also reluctant to reformat the code base globally, although formatting really isn't always obvious, to no-one. I think it's ok to use it for newly introduced files, I'm less...

> I avoid contributing to projects that mandate either black or pre-commit. The former because it results in unreadable code I think that's exaggerating it. Yes, some code becomes less...

IMHO, if we want to start using black (or maybe rather blue), Cython 3.1 would be the time to start. We'd be ripping out a lot of Py2 related code...

I don't think we will do this for 3.1.

> can i work on this issue ? Sure. We probably need to instantiate an `Extension` object here, as done in other examples, and pass the `sources` into that. It's...

Ah, cool, thanks for volunteering to work on this. However, it seems that you didn't see the [Cython.CodeWriter](https://github.com/cython/cython/blob/master/Cython/CodeWriter.py) module. It already generates Cython code from a tree, and would be...

> The right place in the pipeline is not really clear I was considering to run it right after type analysis, but I now think that it would really be...

> agree with the based architecture Well, most of this should still reuse the existing `DeclarationWriter`, or a common base class. Just reusing the indentation part still leads to a...