PyPy is a fast, very compliant, self-hosting implementation of the Python language.
1
vote
1answer
31 views
Run python script in PyPy
I have a python script developed in Spyder using Python 2.7.4.
This script is called from another python script using:
execfile('script.py')
I'd like to know how can I run both python scripts using ...
1
vote
1answer
53 views
How to run ipython with pypy?
How do I use ipython on top of a pypy interpreter rather than a cpython interpreter? ipython website just says it works, but is scant on the details of how to do it.
15
votes
1answer
133 views
Why doesn't Python always require spaces around keywords?
Why can spaces sometimes be omitted before and after key words? For example, why is the expression 2if-1e1else 1 valid?
Seems to work in both CPython 2.7 and 3.3:
$ python2
Python 2.7.3 (default, ...
1
vote
2answers
106 views
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 CPython. Are there any downsides?
1
vote
0answers
44 views
Strange Pypy AttributeError
I want to use pypy to speed up my python code. But i have these strange problems.
This is my code in the init methode of a class:
self._parse_function_by_id_prefix = {
'T': ...
1
vote
1answer
53 views
PyPy: can't monkeypatch ast classes?
This line of code sails in PyPy:
expr.__repr__ = lambda self: ast.dump(self, annotate_fields=False)
TypeError: can't set attributes on type object 'expr'
even though it works great in normal ...
5
votes
3answers
119 views
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 problem.
from itertools import combinations
import time
def findanums(n):
l = []
...
1
vote
1answer
64 views
Making pypy available to pyscripter (or any other ide for that matter) on Windows?
Maybe I am missing something, but I just downloaded pypy 2.0 beta2 windows binary (32 bit), and it seems I can run the interpreter by executing pypy.exe. However, I would like pypy to work with ...
1
vote
1answer
31 views
Is it possible to restrict the builtins in PyPy?
According to the PyPy docs, "the builtins name is always referencing the builtin module, never a dictionary as it sometimes is in CPython. Assigning to builtins has no effect." For example in CPython:
...
1
vote
0answers
38 views
Forcing modules to run in PyPy from a CPython script (run PyPy on part of the code)?
Is there a way to import modules from a CPython script, but run them in PyPy?
The problem is that I have a code that uses lots of SciPy (and NumPy), but there are parts of the code that could be ...
0
votes
2answers
144 views
using cython or PyPy to optimise tuples/lists (graph theory algorithm implemented in python)
I am working on a theoretical graph theory problem which involves taking combinations of hyperedges in a hypergrapha to analyse the various cases.
I have implemented an initial version of the main ...
2
votes
1answer
114 views
Pypy (python) optimization
I'm looking into replacing some C code with python code and using pypy as the interpreter. The code does a lot of list/dictionary operations. Therefore to get a vague idea of the performance of pypy ...
0
votes
1answer
60 views
can pypy use multi cpu in one process? [closed]
As I know, there is GIL in python. I heart that pypy does not meet that problem. I want to know is this true?
class Thread(threading.Thread):
def run(self):
process()
for i in range(50):
...
0
votes
1answer
192 views
Tools for compiling Python / Boo / Ruby like syntax to C / C++ / LLVM / Javascript (using JS ArrayBuffer for speed)
I'm trying to automatically compile / convert code written with Pythonic semantics into native and fast Javascript code.
What tools can do this, with nice debugging support possible like with Java ...
3
votes
1answer
151 views
Optimizing Brute Force process in python / pypy for finding One-Child numbers
A Brute Force approach is not intended to solve to question but aid in its research. I am working on a Project Euler problem that has me finding all the numbers from X to one less than Y that have ...
1
vote
2answers
66 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?
0
votes
1answer
100 views
SQLAlchemy Installation in PyPy
I have a database project that could greatly benefit from the speed boost PyPy provides. I have been unable to install one of the core libraries I am using, sqlalchemy, under PyPy, however. I drop it ...
1
vote
2answers
141 views
How can I import a .so module in PyPy?
I am green to PyPy, and I use PyPy1.9 to interpret my Python code.
As you know, the CPython interpreter can import a module packaged in a .so file, which is compiled from C/C++ codes.
But PyPy1.9 ...
8
votes
2answers
236 views
Portable/fast way to obtain a pointer to Numpy/Numpypy data
I recently tried PyPy and was intrigued by the approach. I have lots of C extensions for Python, which all use PyArray_DATA() to obtain a pointer to the data sections of numpy arrays. Unfortunately, ...
0
votes
0answers
93 views
reducing Memory usage with pypy
I'm using the code for testing threading processes with pypy under windows. its supose each process consume about 20mb/23mb ?
Thats could be a problem for me, because if this code, limiting the ...
0
votes
2answers
71 views
Dynamic typing and legacy codebase maintainability [closed]
If I take Python or Ruby as an example - these languages have implicit dynamic typing. This makes it easy to rapidly develop a new application with less lines of code compared to say, C++ or Java, ...
0
votes
0answers
70 views
pypy sandbox fails at runtime
I'm trying to play with pypy's sandbox, but it fails at runtime with:
$ ./pypy_interact.py ./pypy-c-sandbox
Warning: cannot find your CPU L2 cache size in /proc/cpuinfo
Not Implemented: ...
0
votes
3answers
87 views
Cleaning up in pypy
I've been looking for ways to clean up objects in python.
I'm currently using pypy.
I found a web page and an example.
First a basic example:
class FooType(object):
def __init__(self, id):
...
0
votes
1answer
46 views
PyPy cleanup for redistribution
How can I cleanup PyPy after building it? Which parts are absolutely critical and which parts can I safely delete?
Obviously it's necessary to remove all version controll related files and folders ...
0
votes
1answer
76 views
How to create a symlink to PyPy
The PyPy docs mention creating a symlink to allow pypy to be used globally, but I can't seem to figure out how to do it.
I currently have this command: mklink \pypy C:\pypy
However, it keeps coming ...
0
votes
1answer
59 views
How do I open a pypy process from an ordinary python program?
I run a simple piece of code using python which I would like to open another program in pypy (as this is much faster).
I would also like to be able to pass in a dictionary into the pypy program.
I ...
0
votes
0answers
114 views
PyPy slow when drawing polygons with PIL/pillow
I'm using PIL to draw lots of polygons consisting of big number of points (from couple hundred to couple thousands). With Cpython all polygons were processed 3 times faster than PyPy.
Just to give an ...
2
votes
1answer
144 views
PYPY installation for dummies - What to do with the zip file
I'm trying to use Pypy to make my code run faster, but I don't know what to do with the zip file I downloaded from the site (I tried to read the directions but it moves too fast and I don't know ...
0
votes
1answer
103 views
Error trying to use PyPy and Scapy to sniff wireless adapters
I am attempting to use PyPy and Scapy to sniff on a wireless adapter. I'm on Ubuntu Linux, so I put my card into monitor mode using airmon-ng, open up a REPL, and type the following (after importing ...
1
vote
1answer
56 views
why pypy can't load the extension module generated by shedskin
I was using PyPy and shedskin. But how can I import module generated by shedskin in pypy? Can anyone give an example to help
2
votes
1answer
508 views
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 on co-routines and greenlets, which supposedly makes for a faster web ...
0
votes
1answer
305 views
Does pypy support cython extension?
I have a project which runs is run in pypy (and already achieves a nice speedup over its python counterpart). However, I do have a Cython implementation of one function which is way faster than the ...
0
votes
1answer
95 views
Python loop transfer in other programming language
Again I have a question concerning large loops.
Suppose I have a function
limits
def limits(a,b):
*evaluate integral with upper and lower limits a and b*
return float result
A and B are ...
86
votes
4answers
3k views
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) for midsize numbers (~7 digits). I eventually found the following line of code to be ...
5
votes
1answer
80 views
how to disable pypy assert statement?
$ ./pypy -O
Python 2.7.2 (a3e1b12d1d01, Dec 04 2012, 13:33:26)
[PyPy 1.9.1-dev0 with GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
And now for something ...
1
vote
0answers
77 views
How to implement a sandboxed python interpreter in django to allow user to upload and run code with limited file-system access
I'm looking at building a web based learning environment for Python-based bioinformatics programming. I'm aiming for a mix of Codeacademy's interface, with Rosalind-style questions, preferably ...
3
votes
2answers
47 views
Pypy specific error
I have the following code:
#!/usr/bin/env python
#!/usr/bin/env pypy
class my_components(object):
COMP0 = 0
COMP1 = 1
COMP1 = 2
__IGNORECOMP = -1
def attribute_dictionary(o):
d ...
-1
votes
1answer
89 views
Why PyMySQL in PyPy is slower than that in CPython? [closed]
PyPy is faster than CPython, but PyMySQL is seem to be the bad one, it's about 10 times slower than running in CPython. I want to know why?
0
votes
1answer
142 views
How to use Biopython on PyPy?
I know that PyPy has problems with Numpy and other stuff in Biopython, but not all BioPython modules use this things...
Somebody knows how import and use the module Bio into PyPy?
0
votes
0answers
120 views
Interacting with a Sandboxed PyPy interpreter - secondary .communcate() returns empty tuple
I'm trying to create a way to interact with a sandboxed PyPy interpreter from within a normal (non-sandboxed) cPython or PyPy script.
I've been able to compile a sandboxed PyPy interpreter following ...
0
votes
1answer
262 views
NumPyPy vs Theano?
I am wondering: do these two projects basically have the same goal -- to speed up numerical work in Python?
What are the similarities and differences?
I know that Theano does not aim to re-implement ...
0
votes
2answers
157 views
How do I open a .py file in python from a .py file in pypy?
My program currently consists of 2 .py files.
I run the main part of the code in pypy (which is much faster) and then I open a second file in python that plots my data using matplotlib.pyplot.
I ...
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?
1
vote
2answers
647 views
Using Pygame with PyPy
I'm very new to python but I'd like to learn it by making games and pygame seems to be the best option. Since PyPy is the fastest implementation of python (I think) I decided to use that one.
But I ...
10
votes
1answer
732 views
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/local/bin/pypy
New pypy executable in pypy/bin/pypy
debug: ...
3
votes
1answer
110 views
Does anyone have a good example of how to save a numpy array to file using the struct python module?
I have been experimenting with the best way to save a numpy array to file whilst using pypy (this means that I can't use the obvious numpy.save, numpy.savetxt etc as they are not supported). I've ...
2
votes
3answers
188 views
Is there an alternative to numpy.save(file, arr) that will work with pypy?
I have a main program that runs in pypy that creates three 2D numpy arrays. I want to save these to a file and then open them using python and plot them using matplotlib.pyplot.
Currently pypy does ...
2
votes
1answer
193 views
Is there an alternative to numpy.average() that can average along an axis whilst using numpypy?
I'm trying to make some code run faster by using pypy. However, whenever I run the code using pypy, I get an error from pypy's numpy equivalent (numpypy).
In my usual code I use...
...
1
vote
1answer
52 views
Using pulp from pypy
I've written a simulator in python and I use Pypy to speed it up.
I need the Pulp module for integer programming, which is not supported by Pypy
as far as I can say (http://pypy.org/compat.html).
...
9
votes
2answers
220 views
Why is Pypy's deque so slow?
Here is a (slightly messy) attempt at Project Euler Problem 49.
I should say outright that the deque was not a good choice! My idea was that shrinking the set of primes to test for membership would ...
