Hi Andy, On Wed, Aug 24, 2011 at 11:26 PM, Andy <angelf...@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. _______________________________________________ pypy-dev mailing list pypy-dev@python.org http://mail.python.org/mailman/listinfo/pypy-dev