Roman Odaisky

Results 3 issues of Roman Odaisky

Source: ``` list = [ "first", """multi\ line""", "last", ] ``` Expected: ``` {"list": ["first", "multiline", "last"]} ``` Actual: ``` {"list": ["first", "mu"]} ```

type: bug
component: decoder
syntax: strings
syntax: arrays

docker-compose.yml does not allow `env_file: /dev/null`, because it tests the provided path with os.path.isfile, and /dev/null is not a regular file. This breaks the following use case: ``` env_file: -...

kind/enhancement
status/0-triage

``` >>> ex = Exists("x", filter=Q(y=42)) >>> ex.filter >>> (~ex).filter ```