Xinmeng Xia

Results 11 comments of Xinmeng Xia

Thank you for your patience! Yes, this case is crashing CPython, PyPy and ironPython.

Yes, I also reported it to CPython developers, They comment that this bug may be fixed by adding a stack depth check.

Thanks for confirm these bugs very much. But I am sorry that I cannot fix these bugs because I am not familiar with go language. The fixing task is difficult...

In Python 3, zip() returns an iterator, and we can only use iterators once. After we have used the iterator, it is exhausted and there is nothing left. So the...

Thanks for your confirmation. I hope these bugs are helpful for the development of codon.

@elisbyberi, I apologize for any confusion my previous comment may have caused. I completely agree with you that special variables such as \_\_name\_\_ have their intended use. My point was...

@elisbyberi Thanks. I have also conducted a further investigation and included some additional test cases to help address this issue case 1: ``` a: list[int] x, y = a #Segmentation...

Thank you for providing further clarification. I am sorry for the confusion. In the case of CPython, a NameError is indeed the expected outcome, as it processes code on a...

"\\" also fails. For example: ``` import re match = re.compile('((a)|b\\2)*') ``` output: ``` error: invalid escape sequence: \2 Raised from: std.re.compile:0 /home/xxm/Desktop/IFuzzer/experiment_on_different_interpreter/codon/codon-linux-x86_64/codon-deploy/lib/codon/stdlib/re.codon:104:9 Aborted (core dumped) ```

Thanks for your kindly explanation and patience.