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
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
> 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
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
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
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
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