Tagged Questions

PyPy is a fast, very compliant, self-hosting implementation of the Python language.

learn more… | top users | synonyms

23
votes
6answers
1k views

I have been trying to wrap my head around the PyPy project. So, fast-foward 5-10 years in the future what will PyPy have to offer over CPython, Jython, and IronPython?

From what I have seen and read on the blogs PyPy is a very ambitious project. What are some advantages it will bring to the table over its siblings (CPython, Jython, and IronPython)? Is it speed, ...
20
votes
6answers
2k views

PyPy: What is all the buzz about?

Note: The title is deliberately provocative (to make you click on it and want to close-vote the question) and I don't want to look preoccupied. I've been reading and hearing more and more about PyPy. ...
14
votes
1answer
232 views

Recent-ish changes to the Python execution model?

I just re-read the section on execution models in the 3rd edition of Learning Python (late 2007), and it felt fairly tentative. So, I looked at the same section in the 4th edition (late 2009) and was ...
14
votes
3answers
5k views

Eventlet or gevent or Stackless + Twisted, Pylons, Django and SQL Alchemy

We're using Twisted extensively for apps requiring a great deal of asynchronous io. There are some cases where stuff is cpu bound instead and for that we spawn a pool of processes to do the work and ...
13
votes
2answers
328 views

Is it possible to embed PyPy into a .NET application?

I would like to embed a Python interpreter into my .NET application. I'm aware of IronPython, of course, but I'm specifically interested in PyPy, because of its stackless support and microthreads. ...
13
votes
2answers
712 views

Does PyPy work with Py2Exe?

Does PyPy work with Py2Exe? If it doesn't, are there any similar solutions?
11
votes
2answers
196 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
180 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 ...
9
votes
1answer
991 views

Can PyPy be used to produce a small standalone executable?

(Or, "Can PyPy 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 compiling and ...
8
votes
2answers
491 views

Does PyPy work with NLTK?

Does PyPy work with NLTK, and if so, is there an appreciable performance improvement, say for the bayesian classifier? While we're at it, do any of the other python environments (shedskin, etc) ...
7
votes
1answer
586 views

Guidelines to write fast code for PyPy's JIT

PyPy's JIT can make Python code execute much faster than CPython. Are there a set of guidelines for writing code that can be optimised better by the JIT compiler? For example, Cython can compile some ...
7
votes
2answers
2k views

Django with PyPy

Are there some reasons of using Django with PyPy? I read PyPy increases perfomance.
6
votes
1answer
88 views

Stackless in PyPy and PyPy + greenlet - differences

New version of PyPy ships with integrated Stackless. As far as I know the bundled Stackless is not the same as the origin Stackless from 2001 with continuations. So mainly it is the green threads ...
6
votes
1answer
450 views

PyPy significantly slower than Python

I've been testing a cacheing system of my making. Its purpose is to speed up a Django web application. It stores everything in-memory. According to cProfile most of the time in my tests is spent ...
6
votes
1answer
129 views

Python: getting segmentation fault when using compile/eval

Code: import ast globalsDict = {} fAst = ast.FunctionDef( name="foo", args=ast.arguments(args=[], vararg=None, kwarg=None, defaults=[]), body=[], decorator_list=[]) exprAst = ...
6
votes
1answer
443 views

Installing Python eggs under PyPy

How do I install Python egg under PyPy? During installation, PyPy created /usr/lib64/pypy-1.5/site-packages/ directory. So, I tried using easy_install with prefix set to this directory, however it ...
6
votes
5answers
879 views

Where can I learn more about PyPy's translation function?

I've been having a hard time trying to understand PyPy's translation. It looks like something absolutely revolutionary from simply reading the description, however I'm hard-pressed to find good ...
5
votes
3answers
135 views

Why does JIT'ed code consume so much more memory than either compiled or interpreted code?

Compiled code such as C consumes little memory. Interpreted code such as Python consumes more memory, which is understandable. With JIT, a program is (selectively) compiled into machine code at run ...
5
votes
3answers
897 views

Using Numpy with pypy

I am using some numpy tools (mainly arrays) and I wanted to run the script with pypy, but i can't make it work. The error that i get is: ImportError: No module named multiarray. I checked if the ...
5
votes
1answer
488 views

How come CPython is faster than PyPy on the two tests “slowspitfire” and “waf”?

Judging from the benchmarks posted on the PyPy Speed Center it appears as if PyPy is faster than CPython for all but two of the tests presented. CPython is faster than PyPy on the two tests ...
5
votes
2answers
236 views

when to use an alternative Python distribution?

I have been programming in Python for a few years now and have always used CPython without thinking about it. The books and documentation I have read always refer to CPython too. When does it make ...
5
votes
4answers
752 views

Production ready Python implementations besides CPython?

Except for CPython, which other Python implementations are currently usable for production systems? The questions What are the pros and cons of the various Python implementations? I have been ...
4
votes
2answers
267 views

PyPy + PHP on a single webserver

I'm in the process of setting up a webserver from scratch, mainly for writing webapps with Python. On looking at alternatives to Apache+mod_wsgi, it appears that pypy plays very nicely indeed with ...
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?
4
votes
1answer
267 views

Why is PyPy translate so slow?

It takes hours to translate pypy implementation to c files and build the pypy-c on a modern notebook, with 2G mem and an Intel Core2 2GHz CPU. I know it's a cpu-intensive task, but does it have to be ...
4
votes
1answer
427 views

gui library for pypy

Is there presently any gui library that can be used for development in pypy?
4
votes
4answers
474 views

Developing PyPy's Rpython as a general programming language

Is there any interest in developing Rpython (Restricted Python) from the PyPy project as a general purpose programming language? Perhaps it could be a fork from the PyPy project. Does such a project ...
4
votes
1answer
2k views

How to use PIL with PyPy?

I searched a little bit but I couldn't find a tuto to use PIL with PyPy. According to PyPy's blog, PIL is supported. I installed PIL with pip in my PYTHONPATH. After the download, pip make 2 .pyd ...
4
votes
1answer
401 views

How do I build the 32-bit pypy JIT in 64-bit Linux?

Pypy's JIT will compile on 64-bit Linux ever since it grew 64-bit support, but what if I wanted to compile a 32-bit version? How should I cross-compile a 32-bit JITting pypy on that machine?
3
votes
1answer
67 views

multiprocessing Listeners and Clients between python and pypy

Is it possible to have a Listener server process and a Client process where one of them uses a python interpreter and the other a pypy interpreter? Would conn.send() and conn.recv() interoperate ...
3
votes
2answers
160 views

Can I embed CPython inside PyPy?

I'd like to write a performance-sensitive application in Python, so executing it under PyPy is a natural choice. However, a significant portion of my code depends on numpy, scipy, and scikit-learn. ...
3
votes
1answer
223 views

PyPy C/API access

I've been looking through the reference docs and can't find any mention of a C API for PyPy. Does it exist? If so is it the same as the CPython C API? If PyPy was run on top of CPython would it change ...
3
votes
1answer
165 views

Using the socket module in sandboxed Pypy

I'm attempting to allow a subprocess sandboxed with Pypy to communicate, using a limited protocol, with the parent process. After reviewing the source code of the ...
3
votes
2answers
123 views

Is fstat() a safe (sandboxed) operation?

I'm currently writing a Python sandbox using sandboxed PyPy. Basically, the sandbox works by providing a "controller" that maps system library calls to a specified function instead. After following ...
3
votes
0answers
160 views

Writing code for optimizing JIT compiler [closed]

Possible Duplicate: Guidelines to write fast code for PyPy's JIT I was watching this talk at PyCon: http://pycon.tv/#/video/75 The speakers (the Pypy devs) mentioned that the Python ...
3
votes
1answer
172 views

Making PyPy work with any version of Python (>2.5)?

I want to use PyPy with Python 2.6. The default version (PyPy 1.4.1) seems to be 2.5 when downloading binaries. Google doesn't seem to be helping much, advice?
3
votes
1answer
342 views

How to initialize a set() in code to be compiled as pypy's rpython?

I want to compile some python code using pypy's rpython translator. A very simple toy example that doesn't do anything : def main(argv): a = [] b = set(a) print b return 0 def ...
2
votes
0answers
48 views

Why PyPy 1.7 desn't implement “stackless” stack?

Default build of PyPy 1.7 with stackless included in, does not offer the ability to run with no recursion depth limit (in straight way). Why? Previus builds of PyPy with stackless support ...
2
votes
1answer
75 views

easy_install with pypy while Python is installed

I installed PyPy while still having Python 2.7 on my system. How do I install and then use easy_install with PyPy? What is the syntax for distinguishing where I want to install to with easy_install? ...
2
votes
1answer
103 views

Python: PyPy: SciPy/Chi-square distribution?

I have a Python project where performance is fairly important. Honestly, I know Python (at least pure Python) isn't the best tool for the job, but I'm using it anyhow because I want to distribute a ...
2
votes
1answer
49 views

What front-end can I use with RPython to implement a language?

I've looked high and low for examples of implementing a language using the RPython toolchain, but the only one I've been able to find so far is this one in which the author writes a simple BF ...
2
votes
1answer
98 views

Line between current Python implementations and Compiled Languages [closed]

My understanding C++ is compiled into machine code and executed. Python is compiled into bytecode This bytecode is then executed What does this execution step entail and how is it different for ...
2
votes
1answer
142 views

How does pypy handle recursions?

I have a script I wrote in python and it works fine but I was curious to see if I could speed it up. It basically is recursive script. If I run it within normal python 2.7, it takes about 30 ...
2
votes
2answers
315 views

Lowest footprint Python? CPython?

I'm new in Python. After some searching, I've found that PyPy has great performance but it comes with a price. It use too much memory. What I'm looking for in Python is performance with smallest ...
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 ...
2
votes
1answer
121 views

trying to clone pypy's mercurial repo on windows

Trying to clone the pypy repo on my windows machine for some reason. I have mercurial installed, but I do not have svn installed. I know they just did the migration, but I didn't think I would need ...
2
votes
2answers
188 views

Where is the entry-point of the C code generating by pypy

I'm using PyPy to translate some python code to C code. I wrote a very simple script as below: def main(): print "hello world!" def entry_point(argv): main() return 0 def target(*args): ...
2
votes
1answer
280 views

Sandboxed AND stackless python?

I need a scripting language for describing very complicated workflows. These workflows need to be paused whenever user input is required, and resumed after it is given (could be months later). ...
1
vote
2answers
105 views

Pypy JIT gives a speed boost even if a script is run only once?

I have a script that loads several hundred images, resize them and then composes a bigger image Every time is started with a different set of images: python myscript.py imageFolder/ Running it in ...

1 2