swamishiju
swamishiju
Currently the integration test for the math module doesn't work I have compiled a list of issues that cause this - [x] Kwargs are not supported in general (in `is_close`...
This together with the optional_args fix should mean math module is functional again
```py import string print(string.ascii_uppercase) ``` The above code runs without any issue but ```py import string ``` simply importing causes an unhandled exception ``` $ lpython issue/main.py ASR verify pass...
```py class Foo: def __init__(self: "Foo", bar: i32): self.bar: i32 = bar def __repr__(self: "Foo") -> str: return str(self.bar) def main(): a: Foo = Foo(10) print(a) main() ``` Works fine...
wip
Only uncommented the LLVM test. The C test requires a physical cast implementation in the C backend. CPython has issues with size, likely due to it still using pointer strings,...