type t = private
| PYCBool of bool
| PYCInt of Z.t
| PYCFloat of float
| PYCComplex of {
real : float;
imag : float;
}
| PYCString of string
| PYCInvalidUnicode of int array
| 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.compare
include Ppx_compare_lib.Equal.S with type t := t
val equal : t Base__Ppx_compare_lib.equal