[pypy-dev] Fwd: Discussion with Guido van Rossum and (hopefully) core python-dev on scientific Python and Python3

2012-02-14 Thread Serhat Sevki Dincer
I will take the liberty to forward this topic on "scientific python" to pypy list, since numpy work on pypy has progressed a lot, apparently, and it does concern pypy too, i guess.. Date: Mon, 13 Feb 2012 13:55:45 -0800 From: Fernando Perez Subject: [Matplotlib-users] Discussion with Guido van Ro

[pypy-dev] JITability

2012-01-30 Thread Serhat Sevki Dincer
Hi, Suppose you have a function to validate local/international phone numbers (one space between number groups, no space at start/end, no zero at start) like: def validatePhone(v): if not (9 < len(v) < 19 and '0' < v[0]): *# recall ' ' < '0'* return False for c in v: if '0' <=

Re: [pypy-dev] Real world comparison with native application & cpython

2011-11-25 Thread Serhat Sevki Dincer
https://bugs.pypy.org/issue940 On Fri, Nov 25, 2011 at 6:22 PM, Piotr Skamruk wrote: > Serhat had probably in mind that pypy1.7 is slower than cpython2.7 in this > test. > > Serhat: add this as bug to bugs.pypy.org ___ pypy-dev mailing list pypy-dev@py

[pypy-dev] Real world comparison with native application & cpython

2011-11-25 Thread Serhat Sevki Dincer
I wrote a tiny grep with multi-line match support, and compared its speed under pypy 1.7 with grep and CPython 2.7.1 (on ubuntu 11.04 laptop). No special algorithm/implementation is employed; it is bare re module. input: Plone 4.1.2 eggs directory, size 286mb, possible processed input size is abou

Re: [pypy-dev] Benchmarking PyPy performance on real-world Django app

2011-10-08 Thread Serhat Sevki Dincer
My favorite pypy version is 46768: It passes its own tests + It runs Django 1.3.1 :P Igor, did you try this version by any chance? ___ pypy-dev mailing list pypy-dev@python.org http://mail.python.org/mailman/listinfo/pypy-dev

Re: [pypy-dev] PyPy support for Python 3 -- request for comments

2011-09-12 Thread Serhat Sevki Dincer
> From: Dirkjan Ochtman > To: Antonio Cuni > Date: Mon, 12 Sep 2011 22:44:10 +0200 > Subject: Re: [pypy-dev] PyPy support for Python 3 -- request for comments > Or at the very least state elsewhere how you came up with the > financial numbers... This may also be conducive for companies that > wou

[pypy-dev] Removing dead emails from list

2011-08-25 Thread Serhat Sevki Dincer
Whenever I send an email to pypy-dev I get the below bounce back. Can somebody remove that dead email from the list? frompostmas...@paran.com to jfcga...@gmail.com dateThu, Aug 25, 2011 at 12:18 PM subject [ERR] [pypy-dev] Incompatibility in binary distribution of libraries? mailed-by

[pypy-dev] Incompatibility in binary distribution of libraries?

2011-08-25 Thread Serhat Sevki Dincer
Start with main.py and mylib.py with python2.7 that comes with ubuntu 11.04 i386, run python2.7 main.py the program runs correctly and a file mylib.pyc is produced. Then, if I remove or rename mylib.py file, pyc file is sufficient for main.py to work python2.7 main.py still works. With pypy 1.6, a

Re: [pypy-dev] regex (new re) and 1.6

2011-08-20 Thread Serhat Sevki Dincer
>> > TOTITLE is missing? >> > http://docs.python.org/release/2.7.2/library/stdtypes.html#str.title >> > is working on (unicode) strings in pypy. I dont get it, what do u >> > think is up? >> >> yes, TOTITLE is not implemented in cpyext, the cpython C compatibility >> layer. Btw - what are you tryin

[pypy-dev] regex (new re) and 1.6

2011-08-19 Thread Serhat Sevki Dincer
http://pypi.python.org/pypi/regex installs nicely on pypy-1.6 on my Ubuntu 11.04 i386 but from regex import sub Traceback (most recent call last): File "", line 1, in File "/var/Home/serhat/Program/pypy-1.6/site-packages/regex.py", line 343, in from _regex_core import * File "/var

Re: [pypy-dev] PyPy 1.6 released

2011-08-18 Thread Serhat Sevki Dincer
Great news! Thanks.. > From: Maciej Fijalkowski > To: PyPy Developer Mailing List > Date: Thu, 18 Aug 2011 19:30:44 +0200 > Subject: [pypy-dev] PyPy 1.6 released > > PyPy 1.6 - kickass panda > > > We're pleased to announce the 1.6 release of PyPy