Tagged Questions

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, ...
21
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
713 views

Does PyPy work with Py2Exe?

Does PyPy work with Py2Exe? If it doesn't, are there any similar solutions?
11
votes
2answers
199 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
184 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
996 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
493 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
590 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
94 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
460 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
130 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
447 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
1answer
490 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 ...
6
votes
5answers
882 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
903 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
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
753 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
269 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
4answers
475 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
72 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
224 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
166 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
161 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
346 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
1answer
79 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
108 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
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
318 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
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
281 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
39 views

How to run dynamic python scripts at runtime?

I am trying to get two aspects worked out : First how do I run python script stored in DB as a BLOB in sandbox mode (maybe using PyPy sandbox)? Secondly how can I generate the script itself from the ...
1
vote
2answers
106 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
vote
1answer
105 views

how can i use pip with pypy installed from launchpad?

I have ubuntu 11.10. I apt-get installed pypy from this launchpad repository: https://launchpad.net/~pypy the computer already has python on it, and python has its own pip. How can I install pip for ...
1
vote
1answer
37 views

PyPy reload(…) error

I'm going throgh Segaran's Programming Collective Intelligence using Windows version of PyPy. The author is gradually building this example. First loading the dictionary with: from recommendations ...
1
vote
3answers
85 views

Implementation of string functions in Python?

Is there any documentation on how Python's string functions are implemented in Python? I understand that str is a built-in module, and so its functions are implemented in C. But isn't there code for ...
1
vote
2answers
219 views

PyPy on Windows 7 x64?

I am trying to use PyPy on a Windows 7 x64 machine but do not find any way to do it. Apparently there is a win32 binary, but no x64 binary or installation guide. I am currently using Python 2.7.2 ...
1
vote
2answers
120 views

Pypy translate.py error: rffi_platform.py assert len(infolist) == len(entries)

I was following the instructions on pypy's website (http://pypy.org/download.html#installing) to install pypy from source since the binary has a dependency problem with libssl on my machine. I used ...
1
vote
1answer
339 views

Where is the pypy package in installed pypy-c

I have pypy-c installed with macports (latest version : pypy @1.4.1). I run pypy-c and try to import pypy $ pypy-c >>>> import pypy Traceback (most recent call last): File ...

1 2