Hacker News new | ask | show | jobs
by klibertp 4096 days ago
https://github.com/jneen/tulip
1 comments

OK interesting, it actually appears to be written in RPython, not full Python:

https://github.com/jneen/tulip/blob/master/tulip/libedit.py

(RPython is the "static" subset of Python used to bootstrap PyPy)

They have moved towards treating RPython as a framework:

http://rpython.readthedocs.org/

Yeah, it's basically a toolkit for building jitted languages. Basically the easiest way to get a tracing jit these days. So it'll be a self-hosting jit similar to pypy or pixie.