Antonio Cuni

Results 231 comments of Antonio Cuni

I created a [script](https://github.com/antocuni/rbc/blob/antocuni/array-api/utils/generate_array_api_tables.py) to generate a table of all the functions supported by the API standard and automatically try to check whether rbc already expose a function with the...

wow, this is brilliant 😍

It seems that I'm getting the same traceback twice. I had to slightly change your example in order to load it with chrome: ```js // main.js async function main() {...

FWIW, on firefox it shows only once

For CPython, this boils down to whether to use `Py_INCREF` or `Py_XINCREF` here: https://github.com/hpyproject/hpy/blob/c7d36aa3e08c32a49703b3afd22ac1bdc932f2aa/hpy/devel/include/hpy/cpython/misc.h#L219-L224 I would be nice to have the safest API, but at the same time introducing `XLoad`...

I read the wiki but I'm a bit confused about the terminology. If I understand it correctly, we are talking about two different things: 1. the layout of `HPyContext`: here...

I am not opposed to change the layout of HPyContext, but the first thing to do is to measure the performance penalty and then decide based on that (especially on...

The original PR/discussion is this: https://github.com/pyhandle/hpy/pull/16 TL;DR: we need it to be a namespace if we want to distribute `hpy.universal` and `hpy.devel` (and possibly more) separately. I *think* there are...

I'm not opposed to refactor/change things, but I'd like something more than that as a reason 😅

I think that that link refers to "`pkg_resources`-style", the "old" way of doing namespaces, which is compatible with Python2. This [link](https://packaging.python.org/guides/packaging-namespace-packages/#creating-a-namespace-package) summarizes the possibilities. Indeed, it seems to imply that...