package documentation

Just the init!

Module builder Control flow graph builder.
Module model Control flow graph for Python programs.
Package server Just the init!
Module _debug_hooks No module docstring; 0/8 variable, 0/1 type alias, 0/1 constant, 1/13 function, 0/6 class documented
Package _proto_ Just the init!
Module _runner This is the wrapper that provides/is the py2cfg shell script.
Module _serve No module docstring; 0/2 variable, 0/2 constant, 1/4 function documented
Module _source_db No module docstring; 0/3 type alias, 1/2 class documented

From __init__.py:

Class CFG Control flow graph (CFG).
Class CFGBuilder Control flow graph builder.
Function request_cfg Request a CFG object from server. Overload +0: Args: relpath (str): Path to python source file relative to server's directory lineno: (int): Line number of the desired CFG Returns: CFG near lineno Overload +1: Args: cfgptr (list): Non-zero length list that stores the CFG Returns: A decorator for the desired CFG object...
Function _ Undocumented
@functools.singledispatch
def request_cfg(relpath, lineno, hostname='localhost', port=5000): (source)

Request a CFG object from server. Overload +0: Args: relpath (str): Path to python source file relative to server's directory lineno: (int): Line number of the desired CFG Returns: CFG near lineno Overload +1: Args: cfgptr (list): Non-zero length list that stores the CFG Returns: A decorator for the desired CFG object

Parameters
relpath:strUndocumented
lineno:intUndocumented
hostnameUndocumented
portUndocumented
Returns
CFGUndocumented
@request_cfg.register
def _(cfgptr, hostname='localhost', port=5000): (source)

Undocumented

Parameters
cfgptr:listUndocumented
hostnameUndocumented
portUndocumented