module documentation
The module provides interface for CFG Class, which is a control flow graph (CFG) representation of a Python function or module. It is a directed graph with basic blocks as nodes and control flow jumps as edges. The CFG class can be used to analyze the control flow of a Python function or module. It can also be used to build a "graphviz" visualization of the CFG, which can be helpful for understanding the control flow of a complex function or module.
| Class | |
Basic block in a control flow graph. |
| Class | CFG |
Control flow graph (CFG). |
| Class | |
Link between blocks in a control flow graph. |