type t = private | PYCBool of bool| PYCInt of Z.t| PYCFloat of float| PYCComplex of {real : float;imag : float;
}| PYCString of string| PYCInvalidUnicode| PYCBytes of bytes| PYCTuple of t array| PYCFrozenSet of t list| PYCCode of Code.t| PYCNone
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t Base__Ppx_compare_lib.compareinclude Ppx_compare_lib.Equal.S with type t := t
val equal : t Base__Ppx_compare_lib.equalval pp : Stdlib.Format.formatter -> t -> unit