https://github.com/3tty0n/minipypy
https://github.com/3tty0n/minipypy
bytecode-interpreter pypy python rpython
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/3tty0n/minipypy
- Owner: 3tty0n
- License: mit
- Created: 2024-07-09T14:58:05.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-23T07:25:40.000Z (over 1 year ago)
- Last Synced: 2025-04-25T07:35:44.864Z (about 1 year ago)
- Topics: bytecode-interpreter, pypy, python, rpython
- Language: Python
- Homepage:
- Size: 170 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# minipypy
This is minipypy, a subset of the PyPy interpreter. This project was created to experiment with implementing a new compilation technique, optimizations, and so on.
For the sake of simplicity, minipypy borrows Python's bytecode compiler. It loads a compiled bytecode and interprets it.
## Prerequisite
- PyPy and RPython 2.7
- Due to compile minipypy by RPython
## Future Work
### Python 3 Support
- [ ] Support `marshal.load` for Python 3