Tagged Questions

11
votes
2answers
193 views

what is statically typed in RPython?

It is often stated that RPython (a subset of Python) is statically typed. (E.g. on Wikipedia.) Initially, I wondered how they would add that to Python and thought that they might have added the ...
9
votes
2answers
179 views

Does PyPY translate itself?

I'm I getting this straight? Does the PyPy interpreter actually interpret itself and then translates itself? So here's my current understanding: RPython's toolchain involves partially executing ...
4
votes
1answer
778 views

are generators supported in RPython?

Are generators supported in RPython, because I just read something in PyPy's documentation that says they are not PyPy Doc - Coding Guide They seem easy to be translated to a statically typed ...
4
votes
1answer
90 views

What interpreters have been made using the PyPy Translator Toolchain?

What interpreters have been made using the PyPy Translator Toolchain besides PyPy itself?
2
votes
2answers
206 views

PyPy Translation error

I hope this is the right place for this question. I'm trying to write a simple JIT-enabled interpreter. However, I'm hitting a odd error when it comes to translation. I've copied the JavaScript ...
1
vote
1answer
268 views

Specifying installed native library paths during pypy translate

I am trying to build the latest pypy repo on a Mac machine. One of the needed libraries, libintl, is installed in $HOME/opt/local/lib. I run (using a previously built pypy-c), pypy-c translate.py ...