scoder

Results 651 comments of scoder

> Relatedly, I want to be able to write code such as [...] I moved this idea into a new issue (#4891).

I think enabling coverage/tracing support via an environment variable would be nice. There's always a certain risk that people might naively/accidentally export it globally and then get unexpected results from...

I think the coverage envvar is ready for a PR, but the template engine idea deserves some more discussion first. We can continue it here and I'll rename the ticket....

Proposal: - make Tempita available through a module-level Cython compiler option, e.g. `# cython: process_template=true` - add a context manager as wrapper around `Utils.open_source_file()` which, if template processing was requested...

Triggering CI to get the latest branch status.

>Shouldn't we include the type of the object into the hash? It's ok for different objects to have the same hash value. We should just do what Python does here.

> ```c > CYTHON_UNUSED_VAR_DECL(int i = 5); > CYTHON_UNUSED_VAR_DECL(int b) = 5; > ``` I'd rather not mix this into arbitrary statements. Having a separate marker 'command' feels better to...

> > I'd rather not mix this into arbitrary statements. Having a separate marker 'command' feels better to me. > > what do you mean with `separate marker 'command'` I...

The transform also handles CoerceFromPyTypeNode and calls coerce_to() in some cases. As long as there is a known C integer result type (so that we can safely assume a valid...