Re: Interpreting statprof

2013-09-17 Thread Dmitry Bogatov
Andy Wingo writes: >> Today I tried to statprof my toy application, that uses htmlprag >> since it is too slow (4 sec on one page) vs 0.5 with Python. >> Statprof says, that most of time takes `eval` function, but I checked >> htmlprag source --- it does not use eval. So question is where is it >

Re: Interpreting statprof

2013-09-17 Thread Andy Wingo
On Tue 17 Sep 2013 18:14, Dmitry Bogatov writes: > Hello! > > Today I tried to statprof my toy application, that uses htmlprag > since it is too slow (4 sec on one page) vs 0.5 with Python. > Statprof says, that most of time takes `eval` function, but I checked > htmlprag source --- it does not u

Re: Interpreting statprof

2013-09-17 Thread Andy Wingo
On Tue 17 Sep 2013 18:14, Dmitry Bogatov writes: > Hello! > > Today I tried to statprof my toy application, that uses htmlprag > since it is too slow (4 sec on one page) vs 0.5 with Python. > Statprof says, that most of time takes `eval` function, but I checked > htmlprag source --- it does not u

Interpreting statprof

2013-09-17 Thread Dmitry Bogatov
Hello! Today I tried to statprof my toy application, that uses htmlprag since it is too slow (4 sec on one page) vs 0.5 with Python. Statprof says, that most of time takes `eval` function, but I checked htmlprag source --- it does not use eval. So question is where is it called and what can I do