Open tov opened 5 years ago
Let's get rid of predicates like int? and use the int class instead. Examples:
int?
int
def f(x: int) -> int: … if isinstance(y, int): …
Let's get rid of predicates like
int?
and use theint
class instead. Examples: