Hood Chatham
Hood Chatham
Seems to work for me. ```js const v = pyodide.runPython(` from pyodide.ffi import create_proxy from enum import Enum class A(Enum): v = 1 create_proxy(A.v, roundtrip=False) `); const f = pyodide.runPython(`...
Well the mypy failure looks pretty unrelated to you. Try disabling it for now: ```patch --- a/packages/mypy/meta.yaml +++ b/packages/mypy/meta.yaml @@ -1,6 +1,7 @@ package: name: mypy version: 1.8.0 + _disabled:...
Ah interesting. I guess we really need to figure out how to improve our package system at this point. I think @ryanking13 has thought about this more than I have....
I think a lot of aspects of the CircleCI system is a lot better than github actions, including "rerun with ssh access," better handling of test results, the nice workflow...
I resisted adding a `locals` argument to `runPython` for a long time because the behavior of `exec`'s locals is weird. It is explicitly for executing class bodies. The locals argument...
> I am not familiar with Python and did not understand this behavior. Even for people familiar with Python, this is pretty weird. We should consider adding a warning about...
I think I'll reopen this and label it as a documentation issue,
I think I ran into an issue like this when I was using Pyodide in Deno a year ago. I think the problem was that the Deno Node shims were...
This is a common request and I would like to implement something like this. However, I've looked into this but I haven't been able to find anything to do that...
We have a bunch of ancient stale PRs, it's no problem =)