Jeong, YunWon
Jeong, YunWon
I pushed to your repo directly since I thought you are not active for this PR anymore, but now I know you come back. So I will make PRs for...
you will find `mod ssl` is disabled for the entire wasm32
We usually don't have plans but cover more features step by step. Yes, it is important. And a lot of things are important features for python. Please help us to...
Thank you for the reference! We may can do similar way. One caveat. The linked `wasmer/python` is saying it is built on top of wasix, wasmer's variant of wasi. Then...
RustPython currently is definitely slower than CPython. You may want to check PyPy.
I'd like to understand the problem better. Is utf-16 position calculation a performance bottleneck of the project? If not, you can simply get the line number and transform utf-8 position...
Rust ecosystem usually don't parametrize len() itself for utf16. Rather than that, adding `text_len_utf16` method is making sense. Though still I have no idea how it can improve performance. Since...
Adding a customizable user data field requires customizable area of VirtualMachine, which leads generic type parameter which will be not very useful for most of users. On the other hand,...
Is it possible to add a parameter to `call_into_some_python_function`? Then making a `#[pyclass]` type including ApplicationState reference (not the `&` reference, but any kind of) will be possible to expose...
Here is a concept without a new type ```rust fn update(state: &Arc) { let mut state_lock = state.lock().unwrap(); // work with the state here let ptr = state_lock.deref_mut() as *mut...