[pypy-dev] Is PyPy appropriate for Django?

Armin Rigo arigo at tunes.org
Thu Aug 25 10:22:29 CEST 2011


Hi Andy,

On Wed, Aug 24, 2011 at 11:26 PM, Andy <angelflow at yahoo.com> wrote:
> 1) For URL routing Django uses the re module, which is a C extension. Would
> JIT work with that?

Is this "re" the regular expression module?  If so, it's a standard
library module, so PyPy provides one too, rewritten in RPython.  In
fact it is expected to be much faster than CPython's in the long run,
because regular expressions also use the JIT to compile regular
expression objects (which are originally some kind of bytecode).


A bientôt,

Armin.


More information about the pypy-dev mailing list