RPython (Restricted Python) is a restricted subset of the Python programming language

learn more… | top users | synonyms

0
votes
1answer
37 views

Runing R code on `python` with SyntaxError: keyword can't be an expression error Message

I'm looking to run some R code on python I already installed the R package robustbase on ubunto using apt-get install r-cran-robustbase and rpy packege as well. from the python console I can ...
1
vote
2answers
67 views

Game Library with Support for RPython

Are there any Python game libraries (Pygame, Pyglet, etc.) with support for RPython? Or game libraries specifically made for RPython? Or bindings for a game library for RPython?
1
vote
1answer
156 views

Would Hindley Milner type inference be useful to PyPy for RPython?

Does PyPy do static type checking at compile time to catch type errors at compile time? And if not would something like HM type inference be useful to catch those errors at compile time?
0
votes
0answers
179 views

Any tutorial in how use RPython to build a new language/interpreter? [closed]

According to LLVM, Parrot, JVM, PyPy + python pypy allows you to implement an interpreter in a high level language and you get a generated jit for free I want to build (just for fun) a language ...
0
votes
1answer
80 views

How to link translated pypy/rpython to external jvm libraries?

I am trying to compile RPython code to JVM using pypy's translator toolchain. However, there are many CPython libraries that are not supported, like urllib.urlopen() fails to translate to jvm. Is it ...
9
votes
1answer
381 views

Where's the GIL in PyPy?

Is the PyPy GIL part of the PyPy interpreter implementation in RPython, or is it something that translate.py automatically adds? i.e., if I were to write my own new language interpreter in RPython ...
3
votes
2answers
190 views

Options beyond RPython for writing interpreters w/ JITs?

I'm really interested in the PyPy project, but for the 1st (but less well-known) of its purposes listed below: A set of tools for implementing interpreters for interpreted languages An ...
8
votes
3answers
2k views

Python interface for R Programming Language

I am quite new to R, and pretty much used to python. I am not so comfortable writing R code. I am looking for python interface to R, which lets me use R packages in pythonic way. I have done google ...
1
vote
1answer
92 views

fitdistr in rpy2

I've a 1D list of data, that I want to fit into a distribution using either least squares or maximum likelihood, as presented here, but I want to do it from python instead of the R interactive shell. ...
2
votes
1answer
76 views

Catching signals in RPython

How does one catch signals (specifically/especially SIGINT) in a translated RPython program? I've grepped through the PyPy source tree, I found the CPython signal module, and attempting to use this ...
0
votes
1answer
153 views

using rpy in a django app throws RPy_Exception: R Function “get” not found

Here's the traceback(copy pasted): Traceback Switch to copy-and-paste view /usr/local/lib/python2.6/dist-packages/django/core/handlers/base.py in get_response response = ...
5
votes
1answer
202 views

RPython sys methods don't work

I have the following code: import sys def entry_point(argv): sys.exit(1) return 0 def target(*args): return entry_point, None However, when I run python ...
41
votes
2answers
11k views

Does PyPY translate itself?

Am 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 the ...
2
votes
0answers
675 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 ...
12
votes
2answers
795 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 ...
8
votes
1answer
947 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
144 views

What interpreters have been made using the PyPy Translator Toolchain?

What interpreters have been made using the PyPy Translator Toolchain besides PyPy itself?
1
vote
1answer
454 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 ...
2
votes
2answers
340 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 ...
18
votes
1answer
3k views

Can PyPy/RPython be used to produce a small standalone executable?

(Or, "Can PyPy/RPython be used to compile/translate Python to C/C++ without requiring the Python runtime?") I have tried to comprehend PyPy with its RPython and its Python, its running and its ...