Results 26 comments of matpi

Hi, Exposing async Python functions to JS is currently not supported. I'm currently starting to work on a v2 of this package and the feasibility of that feature will get...

Attempt of an API for v2.0: ```python _quickjs module: def from_js(value: Value) -> Any: """ Rationale: - Why not automatic conversion of JS results to Python objects: - because not...

# Integer conversion - JS supports Number (IEEE754 binary64) and BigInt (unlimited-precision integers) - Python supports float (C double, [IEEE754 binary64 in practice](https://stackoverflow.com/a/70189136)) and int (unlimited-precision integers) ... so it...

Note: I could generate `plot.tex` to the top-level directory, but that's seems less logical conceptually, plus it's less convenient e.g. for VCS integration. A couple independent ideas in case `tikzplotlib`...

I confirm this. Even worse, plots with mapped colors forget about the marker shape itself: ```python import matplotlib.pyplot as plt import tikzplotlib plt.scatter([1.0, 2.0], [3.0, 4.0], marker="x") plt.scatter([1.0, 2.0], [3.0,...

Same here. I had an issue of RAM filling up with long uptimes and it took me a while to realize that it was the shared memory, more specifically /dev/shm,...

This means that the C dependency hasn't been compiled on installation. How did you install the package?

Hi, This hit me as well. However, looking a bit more in detail into it, I feel like model-utils does the right thing / the best it can. Proxy models...

Hi, Adding my grain of salt, as a follow-up of https://github.com/pypa/setuptools/issues/4101. I maintain https://github.com/PetterS/quickjs. On Windows we build with MinGW, mainly because QuickJS is difficult to get to compile with...