Parsa Bahraminejad

Results 14 comments of Parsa Bahraminejad

@pavelzw It should be fixed now.

Thank you very much for the feedback! I did merge the main and it seems like we still have some errors. Also, good idea to tranform it into consecutively chained...

I have added both functinalities both `match _` case and support for below example: ```py def match_with_or(x): match x: case 0 | 1: return 0 case 2: return 2 *...

I haven’t yet added the support for all `ast.MatchSequence()` or `ast.MatchMapping()`. I will try to add support for all cases and the change you suggested by today!

I have made the change from `test: Sequence[ast.expr], then: Sequence[State]` to `Sequence[tuple[ast.Expr, State]]`. Also, I have added support and tests for py 3.9. **Few notes:** I have added support for...

I have added the below functionalities as well: ```py def match_with_guard(x): match x: case y if y > 5: return 1 case _: return 5 ``` will be translated to:...

> Sorry for the delays, i'll get back to you soon, i'm just a bit busy right now 😓 No worries! I am working on fixing some issues but I'm...

Hello, Was wondering if you could review the latest commit and approve? Thanks

Increased the code coverage to ``0.9575`` Also, added some tests both for >= ``PY310`` and ``PY39``. Everything should be fine now.

Added the below test for coverage of L329 - L333: ```py def multiple_match(x): match x: case 0: return 1 case 1: return 2 match x: case 0: return 3 case...