Expand description
Implement virtual machine to run instructions.
See also: https://github.com/ProgVal/pythonvm-rust/blob/master/src/processor/mod.rs
Modules§
Structs§
- Context
- Interpreter
- The general interface for the VM
- PyGlobal
State - Settings
- Struct containing all kind of settings for the python vm.
Mostly
PyConfig
in CPython. - Virtual
Machine - Top level container of a python virtual machine. In theory you could create more instances of this struct and have them operate fully isolated.