Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
199 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
184 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?
3
votes
1answer
105 views

import rpy quietly

My question is analogous to this one but in the context of importing R to Python via RPy. Specifically, when I run from rpy import * at the beginning of my python script, there is a chunk of ...
2
votes
2answers
209 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
0answers
109 views

Importing Rpy with python 2.6, R2.14 and Win 7x64 error

I am trying to import rpy into python. I keep getting this error. Traceback (most recent call last): File "<pyshell#0>", line 1, in module import rpy File ...
1
vote
1answer
269 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 ...