Module PyIR.Const

type t =
  1. | Bool of bool
  2. | Int of Z.t
  3. | Float of float
  4. | Complex of {
    1. real : float;
    2. imag : float;
    }
  5. | String of string
  6. | InvalidUnicode of int array
  7. | Bytes of bytes
  8. | None