safe_execfile(self, fname, *where, exit_ignore=False, raise_exceptions=False, shell_futures=False)
This version will never throw an exception, but instead print helpful error messages to the screen. This only works on pure Python files with the .py extension.
The name of the file to be executed.
One or two namespaces, passed to execfile() as (globals,locals). If only one is given, it is passed as both.
If True, then silence SystemExit for non-zero status (it is always silenced for zero status, as it is so common).
If True raise exceptions everywhere. Meant for testing.
If True, the code will share future statements with the interactive shell. It will both be affected by previous __future__ imports, and any __future__ imports in the code will affect the shell. If False, __future__ imports are not shared in either direction.
A safe version of the builtin execfile().
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them