x0ret
x0ret
Hi, After a nearly long time i'm glad i can focus on this project again. Anyway, i managed to backport decompyle3 parsing and reduction-rule checking here. However it seems to...
> Oh, and as for that specific error. Travis CI is not showing it and in my own locally-checked out master I am not seeing that error. Okay, let me...
Thanks, you made my work easy! Do you mind using separate commit for each? I'll give it a try and let you know about the result.
I pushed some commits to `3.8-goodness` branch and remove corresponding fixed tests from excludes. However please review those if you have time. Also i saw your changes in commits for...
> I don't think this is complete if you grep for n_listcomp you'll see that in there and I think there's some grammar rules with listcomp as well. I got...
``` File "/Users/x0ret/Desktop/dev/python-uncompyle6/uncompyle6/semantics/pysource.py", line 1448, in print_super_classes3 if i == start: UnboundLocalError: local variable 'i' referenced before assignment ``` ```python start = n-2 for i in range(start, 0, -1): if...
@rocky i was investigating python3.7 `datetime` issue and noticed the issue is another `chained compare`, this is the the test case: ```python def f(): if (month is None and isinstance(year,...
You are right, I didn't check for that. Honestly, I have no clue where this issue comes from. Could you please guide me (scope) to go for it?
Ok, the issue is this line: ```diff @@ -811,7 +814,8 @@ class Scanner3(Scanner): self.fixed_jumps[offset] = fix or match[-1] return else: - self.fixed_jumps[offset] = match[-1] + self.fixed_jumps[offset] = target return #...
@rocky, Please check this issue, i couldn't fix it up. the issue is in recognizing `or` since the current grammer does not handle the `python 3.7` case. precisely, the case...