James Cunningham
James Cunningham
I have a project in mind for which I'd like to use MacroPy, but the end result would not be an application but a library, and I'd like any eventual...
Hello all. I understand this isn't the most bristling-with-activity project, but -- coming at it from the perspective of a Python tinkerer who's fallen in love with R's tidyverse --...
Right now, using `Literal[x]` where `x` is not a type raises an error: ```python @enforce_types @dataclass class Foo: foo: Literal[True] Foo(foo=True) # => TypeError: isinstance() arg 2 must be a...
Your README gives the impression that you support collection types like `Dict[str, Tuple[int, int]]`. That's arguably a bit misleading, since only the outermost type is enforced. E.g., the following works...