Re: [pypy-dev] PyPy for analysis?

2014-09-07 Thread Dan Stromberg
On Sun, Sep 7, 2014 at 11:59 AM, Yury V. Zaytsev wrote: > On Sun, 2014-09-07 at 20:25 +0200, Scott West wrote: >> >> Otherwise I can just grab the bytecode or AST and do it myself, but I >> didn't want to replicate any work if I didn't have to :) > > I'm not exactly sure what kind of analysis you

[pypy-dev] pypy 2.4-beta1 (Snow White) is available for testing

2014-09-07 Thread Matti Picus
Get it while it's hot, let me know if something is wrong. https://bitbucket.org/pypy/pypy/downloads Comments and corrections on the release notice would be appreciated http://pypy.readthedocs.org/en/latest/release-2.4.0.html Please test the MacOS version since we have had reports in the past abo

Re: [pypy-dev] Will pypy reach performance of HHVM?(one Day)

2014-09-07 Thread Phyo Arkar
Thanks a lot for the explanation Armin Rigo. > PyPy to be in the same > ballpark performance as V8 Since Debian shootout no longer includes pypy we do not know where to look for good benchmarks, so I had to look at TechEmpower benchmark. Its my fault for looking at TechEmpower benchmark and not r

Re: [pypy-dev] PyPy for analysis?

2014-09-07 Thread Yury V. Zaytsev
On Sun, 2014-09-07 at 20:25 +0200, Scott West wrote: > > Otherwise I can just grab the bytecode or AST and do it myself, but I > didn't want to replicate any work if I didn't have to :) I'm not exactly sure what kind of analysis you have in mind, but you might wish to have a look at pysonar, if

Re: [pypy-dev] PyPy for analysis?

2014-09-07 Thread Scott West
Hello William, Thanks for the comments. I see now (also from Ronan's reply) that it only handles RPython, so I guess ends the question right about there :). Basically I just wanted to see if I was missing some framework that handled transforming Python code into a CFG for the purposes of anal

Re: [pypy-dev] PyPy for analysis?

2014-09-07 Thread Ronan Lamy
Le 07/09/14 12:42, Scott West a écrit : Hello all, I was looking recently into trying to do some simple static analysis of Python programs (to experiment with what is possible), and came across PyPy. Reading some of the documentation it seems that PyPy forms a control flow graph and does some ab

Re: [pypy-dev] PyPy for analysis?

2014-09-07 Thread William ML Leslie
Ugh, thanks Gmail (: On 8 September 2014 01:33, William ML Leslie wrote: > On 7 September 2014 21:42, Scott West > wrote: > >> Hello all, >> >> I was looking recently into trying to do some simple static analysis of >> Python programs (to experiment with what is possible), and came across >> P

Re: [pypy-dev] PyPy for analysis?

2014-09-07 Thread Ryan
You might find mypy(http://mypy-lang.org/) interesting. Scott West wrote: >Hello all, > >I was looking recently into trying to do some simple static analysis of > >Python programs (to experiment with what is possible), and came across >PyPy. Reading some of the documentation it seems that PyPy f

[pypy-dev] PyPy for analysis?

2014-09-07 Thread Scott West
Hello all, I was looking recently into trying to do some simple static analysis of Python programs (to experiment with what is possible), and came across PyPy. Reading some of the documentation it seems that PyPy forms a control flow graph and does some abstract interpretation, which seems to