Jeong, YunWon

Results 852 comments of Jeong, YunWon

the remaining issue is not a good-first anymore

@deantvv could you review this PR?

try to checkout #3863 and check what kind of functions are not implemented. reading related cpython code is also helpful. In RustPython, `_dis` module is here: https://github.com/RustPython/RustPython/blob/main/stdlib/src/dis.rs `dis` module is...

yes, I think so. another small part is being ready to be not disappointed even when adding them doesn't fix the module. you even don't need to add all of...

Ideally, we run the same code. But for opcodes, yes, as you described, it cannot be fully compatible. bytecodes are even not compatible between each cpython versions. When I looked...

This is allowed only for single-argument function call. In `python.lalrpop` I see `FunctionArgument` is including Generator stuff. I guess that part is expected to be moved to `ArgumentList` part.

More above than ArgumentList. cpython: ``` >>> class A(x for x in range(10)): pass File "", line 1 class A(x for x in range(10)): pass ^ SyntaxError: expected ':' ```...