Graphical Profiler
Is integration with a profiler scheduled for a future release? Example
Is integration with a profiler scheduled for a future release? Example
It's on our list of features we'ld like to add but I'm not yet sure when we'll get to it. This and code coverage are fairly high on that list.
Any update on the "code coverage" support?
We've not started on this yet. We're still working on Wing 8 but are starting to look at priorities for Wing 9.. This is on the list but no final decisions have been made yet about what is going into Wing 9, and in what order. Sorry... that's all we know so far. Note that of course there's nothing preventing use of coverage.py or similar along with Wing. There's just no integrated support yet.
A vital question and suddenly my experience will help. :)
Will be required:
I used to use two OS commands
Now use DebugProfileTools
from DebugProfileTools import (profile)
....
some code
....
@profile def Create(): .... the profiled function. This is usually main ....
Below are the profiling results of a module CreateBase.
Each subsequent call overwrites the previous not at coincidence of names, and creates the index file in parentheses.
*.prof
file the result of the Profiler, cProfile
*.res
graph-reading assignment utility Graphviz prepared gprof2dot
*.png
graph-a picture of function calls
*.txt
report in text form
To enter a block of code:
Comments