Myeongseon Choi
Myeongseon Choi
Fix RustPython/Parser#84
## Feature In CPython, generator expression without parenthesis raises following error ```python3 >>> foo(x, z for z in range(10), t, w) File "", line 1 foo(x, z for z in...
### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Rust Version rustc 1.62.0 (a8314ef7d 2022-06-27)...
### Expected behavior Since I want to logging by MLFlow in objective function within experiment (or in exist run) already created, I made the code as below. I think the...
I setup couchdb via rootless docker on Ubuntu 22.04, docker v25.0.3 with following compose ```yaml couchdb: image: couchdb:3.3.3 container_name: couchdb restart: unless-stopped ports: - "9564:5984" networks: - monitoring environment: -...
I'm trying to install navidrome using rootless docker on Ubuntu 22.04, docker v25.0.3 If I just follows the [docker install instruction](https://www.navidrome.org/docs/installation/docker/#using-docker-compose-) it fails with 'permission error' I think the way...
## Feature In CPython, generator expression without parenthesis raises following error ```python3 >>> foo(x, z for z in range(10), t, w) File "", line 1 foo(x, z for z in...
## Feature When using f-strings, a SyntaxError occurs if a string inside the curly braces is enclosed with the same type of quotes as the outermost quotes. In RustPython ```...