scoder
scoder
> I don't remember right now if we defaulted this to `except -1.0` or an implicit `noexcept` I looked it up in the ticket: https://github.com/cython/cython/issues/4280#issuecomment-1100592792 We decided at the time...
> `except_cpp` rather than `except_plus`. +1 > keeping the behaviour as consistent as possible with the `cdef` syntax Absolutely. I think a direct comparison test would help assuring that and...
The [setuptools docs](https://setuptools.pypa.io/en/latest/deprecated/distutils-legacy.html) suggest to change the imports.
Note that there are still several places in the code base where we import from distutils. PR welcome to replace them.
> Cython doesn't account for duplicate keys and so asks for too big a dictionary in this case. I think this is a very minor issue (in that it'll be...
> Cython (by the way of `setuptools`) creates C-extensions right in the current project tree. It then does not clean them up. Cython only generates the .c/.cpp files. They are...
Interesting. I don't even know if nested ctuples are supported. There's no reason not to support them, but I think that's at least not currently tested for. Probably doesn't work.
Right. The fact that no-one has done something about it doesn't mean that it should be forgotten.
> I plan to check everything in `libcpp` and submit a pull request. Please do. > per-element comparison operators for custom types could throw exceptions It would be cool if...
> and then at a late stage is optimized into an empty string literal. Isn't rather this the problem? Can we do this earlier somehow? It seems strange to do...