Closed chriso closed 7 months ago
This PR adds support for Python 3.9.
I had to refactor to avoid things only available in 3.10+:
match
@dataclass(slots=True)
traceback.format_exception
I could add __slots__ manually, but I think this is in premature optimization territory.
__slots__
This fixes #43.
This PR adds support for Python 3.9.
I had to refactor to avoid things only available in 3.10+:
match
(PEP 636)@dataclass(slots=True)
traceback.format_exception
with a single argumentI could add
__slots__
manually, but I think this is in premature optimization territory.This fixes #43.