Jeong, YunWon

Results 849 comments of Jeong, YunWon

@cs50victor Hi, RustPython already can import a lot of pure python packages while it is compatible to RustPython. This issue is about installing a new package using `pip` command. This...

Libraries are all patched and released. But recent pip is broken in RustPython #5584

Sorry for inconvenience. I will release a new version.

Hi, `rustpython_ast` crate contains a few utilities like `Visitor` and `Fold`. They must be helpful.

https://github.com/RustPython/Parser/blob/9ce55aefdeb35e2f706ce0b02d5a2dfe6295fc57/ast/src/lib.rs#L60C1-L60C26 Isn't this line allow to import `rustpython_ast::Visitor`?

That will be a good feature if you need one. Since I don't think you will need `NonLogicalNewline`, maybe just `comment` feature?

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 ':' ```...

I'd like to suggest to create tests using this test https://github.com/RustPython/Parser/blob/main/ast-pyo3/test_ast.py We don't need to run RustPython but still can test if the parser result is same as CPython.

CPython fixed it in 3.12 by comment.