Stepan Sindelar

Results 116 comments of Stepan Sindelar

Hi pranasblk, we've recently updated the examples to work with the latest GraalVM. You can export env variable `GRAALVM_DIR` pointing to GraalVM 0.28.2 location and then run `./build.sh` and `run.sh`....

In general, it is a question if we should use `flags` in HPy. Maybe HPy should have `bool` (or `int`?) fields in `HPyType_Spec` for individual flags instead: that is safer,...

Hello @omaralkhatib03, unfortunately our resources for FastR are limited, so I don't think we will be able to fix this anytime soon.

> [JNA support is explicitly disabled by GraalPy's frontend](https://github.com/oracle/graalpython/blob/master/graalpython/com.oracle.graal.python.shell/src/com/oracle/graal/python/shell/JLineConsoleHandler.java#L86), which is curious decision and writes off support via that TerminalProvider. JANSI and JNI support are potentially less desirable still than...

This will be available in the 25.0.0. The GraalPy and GraalJS launchers use the FFM JLine provider by default and it should work on all platforms that we release for....

We should do some performance measurement for CPython ABI mode performance, where the difference in whether we do extra `if (...)` may matter. On universal mode `HPy_Close` is a full...

I though I already had an issue opened for that. I took the liberty and renamed this issue. I think we are using that field in GraalPy (or at least...

It's about the type of the "owner" or the field value or both? For the owner: it must be defined in the extension that calls `HPyField_Store`, so the user should...

Would it make sense to have `HPy_TypeCheck` and `HPy_TypeCheckExact` in the API, but keep the variant with the `exact` flag as a parameter as a context function to avoid adding...

We should perhaps remove the `extern "C"` blocks in `ctx_*.c` files. I searched around and afaics it just disables names mangling, but the C++ semantics stays the same. I'd say...