Module Procname.Python

type t = private {
  1. class_name : PythonClassName.t option;
  2. function_name : string;
  3. arity : int option;
}
type kind =
  1. | Fun of PythonClassName.t
    (*

    Toplevel function name, or class constructor

    *)
  2. | Init of PythonClassName.t
    (*

    Initialized of a class, like C.__init__

    *)
  3. | Other
    (*

    Other methods

    *)