Module Python_lib__Type_parser

type token =
| STRING of string
| IDENT of string
| EOF
| LPAREN
| RPAREN
| STAR
| ARROW
val type_expr : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> Python_lib.Type.t