Module Ppx_python_runtime
val python_of_bool : bool -> Pytypes.pyobjectval bool_of_python : Pytypes.pyobject -> boolval python_of_int : int -> Pytypes.pyobjectval int_of_python : Pytypes.pyobject -> intval python_of_float : float -> Pytypes.pyobjectval float_of_python : Pytypes.pyobject -> floatval python_of_string : string -> Pytypes.pyobjectval string_of_python : Pytypes.pyobject -> stringval python_of_array : ('a -> Pytypes.pyobject) -> 'a array -> Pytypes.pyobjectval array_of_python : (Pytypes.pyobject -> 'a) -> Pytypes.pyobject -> 'a arrayval python_of_list : ('a -> Pytypes.pyobject) -> 'a list -> Pytypes.pyobjectval list_of_python : (Pytypes.pyobject -> 'a) -> Pytypes.pyobject -> 'a listval python_of_option : ('a -> Pytypes.pyobject) -> 'a option -> Pytypes.pyobjectval option_of_python : (Pytypes.pyobject -> 'a) -> Pytypes.pyobject -> 'a option