This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
|
|
|
|
|
|
is_module_stdlib(file_name)
Returns True if the file_name is in the lib directory. |
source code
|
|
|
|
|
|
|
stop_trace()
Stops the currently running trace, if any. |
source code
|
|
|
|
tracer(frame,
event,
arg)
This is an internal function that is called every time a call is
made during a trace. |
source code
|
|
|
|
|
|
|
save_dot(filename)
Generates a DOT file and writes it into filename. |
source code
|
|
|
|
make_graph(filename,
format=None,
tool=None,
stop=None)
This has been changed to make_dot_graph. |
source code
|
|
|
|
make_dot_graph(filename,
format='png',
tool='dot',
stop=True)
Creates a graph using a Graphviz tool that supports the dot
language. |
source code
|
|
|
|
|