Top "Pypy" questions

PyPy is an implementation of the Python language.

Drawbacks to running Django under PyPy?

I understand that Django, PyPy, and Psycopg2 all work correctly together, and speed.pypy.org claims great performance improvements over …

python django pypy
how to create virtualenv with pypy?

running the following command virtualenv -p /usr/local/bin/pypy pypy exits with error like Running virtualenv with interpreter /usr/…

python virtualenv pypy
Kivy, Eclipse and PyDev (also PyPy)

According to this post: https://groups.google.com/forum/?fromgroups#!topic/kivy-users/n7c3thksnzg, it is possible to use …

eclipse pydev pypy kivy
Using PyPy to run a Python program?

I have been told that you can use PyPy to run Python programs, which is a lot faster as it …

python pypy
Why is pow(a, d, n) so much faster than a**d % n?

I was trying to implement a Miller-Rabin primality test, and was puzzled why it was taking so long (> 20 seconds) …

python performance pypy
Which setup is more efficient? Flask with pypy, or Flask with gevent?

Both 'pypy' and 'gevent' are supposed to provide high performance. Pypy is supposedly faster than CPython, while gevent is based …

python performance gevent pypy
Getting Pypy to recognize third party modules

Just a quick question, how do I get pypy to recognize third pary modules that I have in Python? For …

python pypy pytables
Is there a way to avoid this memory error?

I'm currently working through the problems on Project Euler, and so far I've come up with this code for a …

python memory pypy
Compile PyPy to Exe

I know how to compile CPython file to exe using cx_freeze but is it possible to compile a simple …

python compilation exec pypy
How to use PyPy on a Mac?

PyPy's speed promises make me want to try it. Unfortunately, none of the tutorials I read on the subject really …

python pypy