Andrey Somov
Andrey Somov
- no commits more than a year - no issues solved - pull requests stay open without comments Is the project alive ?
…getSystemClassLoader() More context: https://bitbucket.org/asomov/snakeyaml/issues/318 I have yet another use case but it is not easy to explain it since it is no open source. The new way should improve the...
This works properly (note the trailing TAB): ``` >>> from yaml import CLoader as Loader, CDumper as Dumper >>> data = load('"bar"\t', Loader=Loader) ``` This fails: ``` >>> from yaml...
Hi all, SnakeYAML is going to implement YAML 1.2 (the superset of JSON) in a [separate project](https://bitbucket.org/asomov/snakeyaml-engine) But it requires Java 8. Do you plan to migrate to Java 8...
It will show the level of the YAML compliance: https://github.com/yaml/yaml-test-suite
Thank you for the useful project. Is it possible to run the mock as a docker container? (to be used in other programming languages)
This should be covered: >>> from yaml import CLoader as Loader, CDumper as Dumper >>> data = load('"bar"\t', Loader=Loader) This can be extended: https://github.com/yaml/yaml-test-suite/blob/main/src/DE56.yaml
Hi, I would like to run this mock as a container. Is it possible ? I could not find any information