ryaml icon indicating copy to clipboard operation
ryaml copied to clipboard

Python yaml library using Rust

Results 5 ryaml issues
Sort by recently updated
recently updated
newest added

This fixes #5 With the introduction of new versions the dumped format changed slightly. I'm currently also getting the following error for two tests. ``` OSError: buffer size must be...

Right now the following yaml ``` a: - b - c a: q: a q: b ``` Would get something akin to `{'a': {'q': 'b'}}` PyYaml has similar behaviour as...

There are some crucial differences between pyyaml and ryaml which should be described as they implement different versions of the yaml spec. The differences is also described in another python...

If you try out the values specified here > https://yaml.org/type/bool.html It won't work as expected, it will not create a dictionary with a boolean, instead it will create dictionary with...