Re: [Numpy-discussion] ANN: line_profiler 1.0b2 released

2009-07-20 Thread Robert Kern
On Mon, Jul 20, 2009 at 01:42, Nicolas Pinto wrote: > Thanks a lot Robert for this very useful tool! > > I was wondering if there is a way to make it work with Cython code (see > below) ? No, line_profiler cannot work with Cython. There is some talk on the Cython mailing list about implementing fu

Re: [Numpy-discussion] ANN: line_profiler 1.0b2 released

2009-07-19 Thread Nicolas Pinto
Thanks a lot Robert for this very useful tool! I was wondering if there is a way to make it work with Cython code (see below) ? Sincerely, Nicolas fib.pyx: @profile def fib(n): """Print the Fibonacci series up to n.""" a, b = 0, 1 while b < n: a, b = b, a + b test.py: imp

Re: [Numpy-discussion] ANN: line_profiler 1.0b2 released

2009-02-19 Thread Brian Granger
> github is fine, but bitbucket would be a better impedance match. > Either way, I'm looking forward to it. Thanks! I will give bitbucket a shot and let you know when I have something for you to look at. Cheers, Brian > -- > Robert Kern > > "I have come to believe that the whole world is an eni

Re: [Numpy-discussion] ANN: line_profiler 1.0b2 released

2009-02-19 Thread Robert Kern
On Thu, Feb 19, 2009 at 16:21, Brian Granger wrote: > Robert, > > Thanks for the announcement. I have recently started to use > line_profiler to profile Twisted using servers and clients. I quickly > found that line_profiler needed some modifications to properly handle > timing functions that re

Re: [Numpy-discussion] ANN: line_profiler 1.0b2 released

2009-02-19 Thread Brian Granger
Robert, Thanks for the announcement. I have recently started to use line_profiler to profile Twisted using servers and clients. I quickly found that line_profiler needed some modifications to properly handle timing functions that return Deferred's. I have written some small extensions to line_p

Re: [Numpy-discussion] ANN: line_profiler 1.0b2 released

2009-02-19 Thread Matthew Miller
On Thu, Feb 19, 2009 at 03:21:26PM -0600, Robert Kern wrote: > http://pypi.python.org/pypi/line_profiler/ > http://packages.python.org/line_profiler/ > This release fixes the "negative timings" issue on Windows. Cool. I'm still interested in making Fedora packages for this once I get a few spare c

[Numpy-discussion] ANN: line_profiler 1.0b2 released

2009-02-19 Thread Robert Kern
http://pypi.python.org/pypi/line_profiler/ http://packages.python.org/line_profiler/ This release fixes the "negative timings" issue on Windows. Future announcements will occur on python-announce. I just wanted to make sure my earliest users here who ran into this bug are aware of the fix. -- R