1# mypy: ignore-errors 2 3import torch # noqa: F401 4 5 6def div_int_nofuture(): 7 return 1 / 2 8 9 10def div_float_nofuture(): 11 return 3.14 / 0.125 12