rbroderi
rbroderi
Update to python 3 Utilize beartype for runtime O(1) typechecking Add type hints for mypy / beartype static type checking. Update license to GPL v3
Am i missing something or is this not implemented. ``` from beartype.door import is_bearable from collecitons.abc import Iterable a = [1] b = ["string"] c = [None] is_bearable(a, Iterable[int]) ->...
add _clean_up() method and call from stop_listening as cleanup code was not running after #listen section. Created .pyi files for typing.
I have found a situation where @beartype fails with a beartype.roar.BeartypeCallHintParamViolation that i believe is a mistake. Here is the Minimum reproducing example I could come up with: ``` """Minimum...