bpcreech

Results 12 comments of bpcreech
trafficstars

Just piping\* up with another use case: [Using Hatch to run Python matrix tests](https://hatch.pypa.io/1.9/config/environment/advanced/#matrix), for wheels built on Alpine. Hatch uses `python-build-standalone` for this, plus pip to download wheels. [Here...

BTW docs can be previewed at https://bpcreech.com/PyMiniRacer

Update: after discussion with @nizox and @aviat we decided to fork PyMiniRacer into https://github.com/bpcreech/PyMiniRacer for its continued life. This PR (and more) are landed there.

Hi! `atob` is a web Api (defined on the `window` object), not a JavaScript API, so PyMiniRacer and V8 don't define it. You could try providing your own `atob` through...

Hi! These are Web APIs, not JavaScript APIs, so the answer "is not likely soon if ever". PyMiniRacer is primarily a wrapper of V8, which implements the JavaScript standard and...

Hi! I don't have a Windows environment to reproduce this issue in but if you want to send a PR I can take a look! I wonder what the cause...

Hi and belated thanks for the diagnosis! Pinning `depot_tools` would probably be useful. I would welcome a PR for this... probably we could simply hard-wire it in v8_build.py alongside the...

Hey, interesting idea! The [v8 inspector protocol](https://v8.dev/docs/inspector) is pretty extensive! I wonder if you could describe what kinds of things you want to do with it? (E.g., print values, change...

Ah, hmm, I think that's either a bug or expectation gap in the code. Because the JS code doesn't `await` the return value of `log`, it's basically a race condition...

The sequence isn't relevant in this example since the values are ignored. The purpose here is simply to ensure the function is completed. You are right that this is not...