Hi.
After a long period, the next version of pyvm is finally out!
pyvm is a small hobby project that's based on a vm that is
a cousin of Python and attempts to reimplement a full userspace
system with the use of a monolithic toolchain with internal APIs.
The result is a very compact codebase wh
WHAT IS IT
--
pyvm is an experimental python virtual machine with a compiler written
in python. pyvm is very incomplete and does not care about backwards
compatibility so you shouldn't use it unless:
- you are interested in vm hacking.
- you want to build another big program based on a f
Pleased to announce pyc 0.7
pyc is a sourcecode-to-bytecode compiler written entirely in python
and derrived from the standard library compiler module. It features
many interesting optimizations which both compress the size of the
generated bytecode, and make it faster to execute.
The most impor
Hi.
pyc is a compiler that compiles source code to bytecode and it's written
entirely in python. It's based on the compiler package from the stdlib
but the parser/lexer are implemented in python. Moreover, it does some
optimizations on the bytecode.
http://students.ceid.upatras.gr/~sxanth/p