scoder
scoder
Any update on this?
All fine, no rush, just wanted to check back. Yep, runnable tests go into `tests/run/`. Specifically, the `pure*` tests would be relevant examples here since they are executed in both...
@TeamSpen210, sounds good. @HSR05, the test needs fixing and the implementation should work with Py2.7.
>I think it should probably be rejected as an error by Cython instead. Yes, definitely. It makes no sense at all to allow C includes, verbatim C code, or extern...
> [@TeamSpen210](https://github.com/TeamSpen210) thanks. That was largely what I thought. Leaving it empty definitely isn't sufficient though (I tried that) - I think you have to set `tp_getattro` to `_Py_slot_tp_getattr_hook` which...
> I wonder if adding the traceback could be deferred until it's actually needed. But this might need careful thought. Python code can always look up the currently handled exception...
> we already eliminate most of the exception handling for `except Something: pass`. I wonder if there's a few other trivial cases we could optimize? I'm mostly thinking of returning...
See https://github.com/cython/cython/issues/6601
One more remark: Any operation that might itself raise an exception (and there's little in Python that can't) can make use of the currently handled exception in exception chaining. In...
Do you have the correct NumPy version installed (i.e. importable) while calling `cython` in your build?