Daniel
Results
31
issues of
Daniel
Hello, It would be great to support complex conditional cases (in `if` and `while`). Example: ```python if some_method(True) or another_condition(False) or something_else(): pass ``` That would split into: ```python if...