Questions tagged [rpython]
RPython (Restricted Python) is a restricted subset of the Python programming language.
2 questions
2
votes
1
answer
212
views
R-Python sieve, 36 times slower than World Record
I decided to write a sieving prime-finding programme and make it fast. It works correctly, but counting the primes below 10**9 takes 36 times as primesieve ...
11
votes
2
answers
644
views
Virtual machine using RPython and PyPy
I'm writing a virtual machine in Python using RPython and the PyPy toolchain. The RPython will still work in the ordinary Python 2 interpreter; it's just a bit slow unless it's compiled to C code with ...