Module Hg_private.Changeset_info
include module type of struct include Public end
type t = Public.t = {node : Node.t;parents : [ `Zero | `One of Node.t | `Two of Node.t * Node.t ];author : string;time : Time.t;tags : string list;description : string;files : [ `Omitted | `Files of string list ];
}val files : t -> [ `Files of string list | `Omitted ]val description : t -> stringval compare : t -> t -> intval to_hg_style_string : t -> stringval time_of_hgtime : string -> Time.t