Jordan Last
Jordan Last
Hmmm...what if I were able to get a `&mut` to the vm from the interpreter? Would it then just persist its state? I don't think I need the `enter` mechanics...
I just need to do something like this? ```rust let interpreter = rustpython::vm::Interpreter::with_init(Default::default(), |vm| { vm.add_native_modules(rustpython::vm::stdlib::get_module_inits()); }); ``` I still get a runtime error but if I'm on the right...
I have turned all features off, do I need to enable a feature to get the stdlib to work?
I have in my Cargo.toml: ``` rustpython = { path = "../../../RustPython", default-features = false, features = ["stdlib"] } ``` Here's all of the code for a self-contained example: ```rust...
When running similar code using RustPython on my machine compiled to x86, I was able to figure out the error: ``` ModuleNotFoundError: No module named 'typing' there was an error...
I have figured it out. This was very tricky to figure out. It might be good to add better documentation or refactor the code to make this easier. Also, this...
I would expect it to just work after I've cargo installed RustPython
I think my issue might be a duplicate of this: https://github.com/RustPython/RustPython/issues/4117
I also have all features turned off, should I have `rustpython-parser/lalrpop` as a feature?
There are a number of things that should be addressed to get `wasm32-unknown-unknown` to work outside of a browser: # getrandom Right now getrandom is defined in the Cargo.toml like...