[Solly]
> Has anyone tried using the python profiler to profile a pyQt-based app?
> 
> When I run it on my application it ignores all the qt function calls, and 
> only profiles methods which I have defined myself.

I don't use PyQt, but I suspect the reason is that the PyQt calls are
implemented directly in C.  The Python profiler only profiles functions
that are implemented in Python.

I have a recipe in the Python Cookbook here:

  http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/81535

that lets you wrap a C module in a transparent Python wrapper, so that
the profiler will work for it.  Whether it's reasonable to attempt to do
this for something as large as PyQt I don't know.

-- 
Richie Hindle
[EMAIL PROTECTED]

_______________________________________________
PyKDE mailing list    [EMAIL PROTECTED]
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Reply via email to