yet another python virtual machine
Currently code quality and performance are bad. Really bad. Project in proof of concept stage
- @tvldslv
- @geekysteve
- @sad_prikol
- No async
- No yield
- No for loops, no in, only while cycles
- No exceptions
- Threads
- No GIL
- Currently no class inheritance
- Basic objects representation
- Internal data sturcutres - lists, tuples
- Custom iterator
- Virtual scope
- Basic GC implementation
- Basic classes
- TESTS
- Scope finished - Stepan, Yuriy
- Dicts - Vlad, Stepan
- Classes finished - Yuriy, Stepan
- Threads - Vlad
- Interpreter inner things (parser) - Yuriy
- Custom allocator - Stepan, Yuriy
- Interpreter finished - Vlad, Stepan, Yuriy
- TESTS - Yuriy, Stepan, Vlad
- Optimized GC
- Optimized interpreter
- Threads finished